Answer by Vong Panha Huot for Laravel session expires randomly
This might be related to this well-known issue Laravel 5.0 - Asyncronous AJAX Requests cause Session Variable Changes to be Overwritten #7549 If multiple requests try to overwrite the session and the...
View ArticleAnswer by Sudharshan R for Laravel session expires randomly
In my case this was an issue with the cached config file. Laravel creates a config file which is cached inside bootstrap/cache folder. Rename this config.php file to something else and run "php artisan...
View ArticleAnswer by mhughes for Laravel session expires randomly
I've come across this issue various times, for no specific reason, and it's not mentioned by Amir. Clearing the domain cookies works for the scenario I'm seeing.
View ArticleAnswer by Amir for Laravel session expires randomly
After a lot of investigation on the issue in our company, I came to this result, I hope it helps, first of all here is our environment specifications: PHP: 5.3.3 LARAVEL: 4.1 OS: centos 6 on server and...
View ArticleLaravel session expires randomly
We had this issue on our website that we got CSRF errors randomly from our users. The session cookie and session data were set to be expired in 12 hours and session driver is set to use Redis. Further...
View Article