Session save path
From Joomla! Documentation
| This article is a small, well-defined item that could be completed by someone with a reasonable knowledge of the subject matter and a modest time commitment.
If you would like to try writing this article you're welcome to do so. The subject may be self-evident, but if not then further details should be available on the discussion page. Please add {{inuse}} at the top of this page while editing. For other small, well-defined tasks, please look in the Cookie jar.
|
| This page or section is in the middle of an expansion or major revamping.
However, you are welcome to assist in its construction by editing it as well. Please view the edit history should you wish to contact the person who placed this template. If the page has not been edited in several days please remove this template. |
Session save path : Unwriteable
Solution:
Find the file php.ini, this is located in the same director as the installation of PHP
Open the file in a text editor and find session.savepath, this will look like :
session.save_path="C:\DOCUME~1\username\LOCALS~1\Temp\php\session"
We need to make this directory writable C:\DOCUME~1\username\LOCALS~1\Temp\php\session.
On Linux Systems the php.ini will probably use /tmp folder.
If you do not want to make the whole folder writable you can change the php.ini setting to
e. g. /tmp/joomla
and creating that new folder by typing (as root)
mkdir -m 777 /tmp/joomla
