I have been facing issue related to Session timeout using Zend Framework 3. Session expired within 5-10 min. I had used the default code for the session, which Zf3 skeleton provides in global.php as below.
// Session configuration.
'session_config' => [
'cookie_lifetime' => 60*60*1, // Session cookie will expire in 1 hour.
'gc_maxlifetime' => 60*60*1, // Store session data on server maximum for 1 hour.
],
// Session manager configuration.
'session_manager' =>
[
'validators' => [
RemoteAddr::class,
HttpUserAgent::class,
]
],
// Session storage configuration.
'session_storage' => [
'type' => SessionArrayStorage::class
],
After using above code still session expired within 5-10 minutes.I want session expired time more than 30 minutes.How to configure it in Zf3.
Please provide solution.
You have the correct settings for the session manager, but this is not enough for these session settings to be used as the default one.
My assumption is that you do not make this session manager your default one. In order to make it, you need to instantiate it as early as possible. One solution would be to do this is in module Module.php
Reference
EDIT: My 2nd assumption is that you use the global path for your sessions(eg /var/lib/php/sessions).
In Debian, there is a cron that may clear sessions according to your php.ini session settings(/etc/cron.d/php).
This cron uses your php.ini "gc_maxlifetime" and probably clears your sessions.
To find out where your sessions are saved, use session_save_path(). Check that directory for your sessions.
To overcome this, you should set "save_path" and this path should not be shared with others applications or scripts on your server(you do not want another script using the global gc settings or its own, deleting your sessions).
Add
in your 'session_config' array.