I am using the Laravel Framework version 4.1.21, and the "expire_on_close" option does not end the session in Chrome when the browser is closed. The parameters in the config / session.php file are as follows:
'driver' => 'file', 'lifetime' => 120, 'expire_on_close' => true,
Also in the developerβs toolbar, under Resources> Cookies, the value of Expires is set to "Session" for the laravel_session cookie.
This works great in Firefox. Any ideas what I am missing? Thanks!
source share