Laravel 5.2 frequently logging out

2020-02-15 04:23发布

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?

2条回答
再贱就再见
2楼-- · 2020-02-15 04:47

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
查看更多
Summer. ? 凉城
3楼-- · 2020-02-15 04:50

set your config settings of timeout from 120 to 2400. this is in minutes.

in config/session.php 'lifetime' => 120 // This is in minutes

查看更多
登录 后发表回答