Laravel 5.2 frequently logging out

隐身守侯 提交于 2019-11-28 10:54:49

问题


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?


回答1:


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

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




回答2:


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


来源:https://stackoverflow.com/questions/37732739/laravel-5-2-frequently-logging-out

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!