Hello,
I am using laravel 4.2.11, MAMP(php - 5.4.19) on Mac OSX 10.9.3. Permissions on app/storage/ are 777
I noticed that sessions are not persisting between page requests.
The following are the relevant settings in app/config/sessions.php
driver => file, lifetime = > 120, expire_on_close = false, connection => null, lottery => array(2,100) cookie => 'laravel_session'
I am setting cookie in controller 1 with Session::put('test','session_test');
In controller 2 i am accessing session var like this --- $value = Session::get('test')
Value is null. I am not sure why. I tried changing cookie name, and increasing lottery to (2, 200) but no luck.
Any ideas what i should be looking out for?
regards, SK
Tell me if you can see something in the 'app/storage/sessions' directory. Sessions are usually stored there when using the file driver.
When you set the session, does the script continue? Or does it encouter an die() or dd() function?
I think sessions will set at the end of the application lifetime. So if you die() before that it won't set any..
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community