cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
Hello :)

Please confirm if the "session.save_path" value is set to "/tmp" in your /usr/local/lib/php.ini file with a command such as:

Code:
grep session.save_path /usr/local/lib/php.ini
Then, check the ownership/permissions on the /tmp directory:

Code:
stat /tmp
It should be owned by "root" and configured with "1777" permissions. Also, make sure it's not full:

Code:
df -h
df -i
You should be able to create a new file within it:

Code:
touch /tmp/cptest123
Thank you.