Hello I was trying to set another path on my account so it will use a folder in my account and not the main server /tmp but i get a 500 Internal error .htaccess <?php // session_save_path('/home/account/sessions'); echo ini_get("session.save_path"); phpinfo(INFO_ALL); ?> Any ideas? Thank you
Hi, create a file "php.ini" in your home folder and set the session_save_path there. it should be in the format as given below. ========= session.save_path = <path to your folder> ========= Save the file and give the ownership of the user.
What is the home directory of the account? Is the server SuPHP enabled? If yes, you can use php.ini under the account and set the "session.save_path" value. If not, you need to use .htaccess to set the session.save_path value. Make sure the permissions of the directory where sessions will be saved are 777. BTW, what do the Apache error logs say? They are saved under /etc/httpd/logs/error_log file