Laravel Session files not cleaning from the framework/sessions folder
I am on a shared host (OVH pro) using Laravel 5.2 on production (PHP 7.0.5). I am using the file session driver , and everything was working fine on my previous host (with the same app), but since I moved to OVH, the session files keep being created and are never deleted by the PHP garbage collection. I have to manually erase the files ( over 5000 files are created per day ). My config/session.php file is set up correctly: 'driver' => 'file', 'lifetime' => 120, 'lottery' => [2, 100], And my folders storage , storage/framework , storage/framework/sessions are all set with a 0755 permission. I