Hello!
I'm running Nginx webserver with PHP5.
The problem I'm currently facing is: I cannot change password of user account Admin.
This gives me this error messages after clicking "Save":
"Session is not working properly [...] check session.save_path variable [...] read Howto 53 of FAQ [...]"
According to Howto 53 variable session.save_path should be set to a writeable directory. In my installation the variable is set as follows:
session.save_path /var/lib/php5
Checking the permissions of this directory I can see that it is writeable for all users:
Code:
ls -l /var/lib/
insgesamt 144
drwxr-xr-x 2 root root 4096 Sep 1 22:20 alsa
drwxr-xr-x 5 root root 4096 Sep 19 00:18 apt
[...]
drwxr-xr-x 2 root root 4096 Aug 16 02:48 pam
drwx-wx-wt 2 root root 4096 Sep 19 01:04 php5
drwx------ 3 root root 4096 Aug 16 02:47 polkit-1
[]...
What is the cause of my problem?
THX