php - Session start on Laravel -


please help, exception on:

session_start(); 

open(/home/en/incentivestogirls/app/storage/sessions/sess_uj043d3ka2vgv3iumu6vf1cbr1, o_rdwr) failed: read-only file system (30)

storage directory needs writable web server. make app/storage folder writeable example command

chmod 777 -r app/storage 

which not works, because allow every user rwx access folder. better solution use 755.

if permission change not help, there can serious problem hdd (failing, run out of memory,...). try contact administrator or provider.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -