Hi
Is there any guidance on
-
How long a user sessions time is?
-
How we are able to extend it?
Scenario: user adds something to cart, however they abandon cart. We send reminder email, are they shown that cart?
Hi
Is there any guidance on
How long a user sessions time is?
How we are able to extend it?
Scenario: user adds something to cart, however they abandon cart. We send reminder email, are they shown that cart?
In the config.php file you can find the following parameters
// Sessions storage live time
define('SESSIONS_STORAGE_ALIVE_TIME', SECONDS_IN_DAY * 7 * 2); // 2 weeks
// Number of seconds after last session update, while user considered as online
define('SESSION_ONLINE', 60 * 5); // 5 minutes
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.