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.