Anyone have a starting place to cure this? PHP is 5.4.25. Thanks.
Warning: session_start(): open(/tmp/sess_7205a118d6e8e0558ef4b36076e41b4a, O_RDWR) failed: Permission denied (13) in /home/USER/public_html/projeqtor/tool/projeqtor.php on line 3
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/USER/public_html/projeqtor/tool/projeqtor.php:3) in /home/USER/public_html/projeqtor/tool/projeqtor.php on line 3
Fatal error: Allowed memory size of 648019968 bytes exhausted (tried to allocate 130968 bytes) in /home/USER/public_html/projeqtor/model/persistence/SqlElement.php on line 298
Warning: Unknown: open(/tmp/sess_7205a118d6e8e0558ef4b36076e41b4a, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
It seems your PHP user (user lauching PHP) has no right to write in the /tmp directory, defined as PHP temp directory.
Projecqtor is in its own sub-directory. Where would the temp file be located ?
In the projeqtor file, root http or higher?
It is PHP temp directory (no mlink with ProjeQtOr).
It is located ... where your php.ini sets it (search for session.save_path)
Your log file seem to try to write on /tmp directory (/ is at the root, path is absolute, not relative)
session.save_path got it!
Thanks.