I'm trying to create a PHP login system using sessions, which works using a windows localhost server on XAMPP, but when running on fedora's localhost will not save the sessions to /tmp/.
I have found many other users having the same problem and found that the solution was to make /tmp/ writeable, and tried doing this, but still have the problem.
I created an extra script which just creates a file (text.txt) in /tmp/, to make sure that files are able to write to this location, and this file saves with no problem. If I echo the session_save_path, it tells me that it is /tmp/, as is written in php.ini, but they still do not seem to save there.