|
If you are receiving an error in your php scripting regarding the sessions.save_path not being writable or accessable etc, you need to perform the following steps.
1) Create a php.ini file within the root directory of your website (ie: /home/user/public_html) *
2) Create a folder anywhere in your home directory (such as /home/user) and call it sessions and set the permissions to writable (chmod 777 or 755)
3) Edit the newly created php.ini file and insert the following: session.save_path = /home/user/sessions/ *
Once you have added this line, save and upload your php.ini files changes. All PHP sessions etc should now be working fine and caching to that directory.
*Note: Where you see *, replace the word "user" with your username. Do not include the * in your configuration line.
|