Archive

Posts Tagged ‘.htaccess’

Fix Session Save Path

January 22nd, 2010 No comments

Define session.save_path directive in PHP.INI

If you have root access or control to the web host (for example, in VPS or dedicated server), edit the PHP.INI PHP configuration file in the web server to add in the environment variable. Normally the session.save_path directive is already included in the default PHP.INI, but been commented out. Add or edit the line so that it looks like below:

session.save_path = /tmp

Modify /tmp to the path to a folder that is writable by Apache web server process. If you don’t have shell access to the web host, such as in shared hosting, try asking hosting service provider to include the session save path parameter, or make the path writable. Read more…