hello every one now I work on project using laravel 5.5 and when try open and save session don’t save Specifically after reloaded the page this problem from nginx but I cant find a solution I need help
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Since you’re using the file driver, you need to make sure that Apache has access to create and write to the session files. Run these commands to give Apache permission to do so:
sudo chown www-data:www-data /path/to/laravel/storage
sudo chmod og+rw /path/to/laravel/storage
More specifically, session files are stored in storage/framework/sessions
, but Laravel needs write access to all of storage
anyway.
I use file
What session driver are you using? (See
config/session.php
). Does Apache’s error log contain any useful info?