I am using Laravel 5.2. with session driver set to FILE in .env
file.
I am logging out of the system about every 2 hours, especially when I return from PayPal payment page to my website.
Can anyone help me with this?
I am using Laravel 5.2. with session driver set to FILE in .env
file.
I am logging out of the system about every 2 hours, especially when I return from PayPal payment page to my website.
Can anyone help me with this?
set your config settings of timeout from 120 to 2400. this is in minutes.
in config/session.php 'lifetime' => 120 // This is in minutes
You can find session configuration in config/session.php
file.
Change lifetime
parameter value. You may specify the number of minutes that you wish the session to be allowed to remain idle before it expires.
'lifetime' => 120 // This is in minutes