Hi all, i finished the installation and the site it's working but when i`m trying to connect on …administration/bta_jslogin.php gives me some errors:
Warning: session_start() : open(/public_html/tracker/sess_d2afe868b57d27446d23b541fff152c2, O_RDWR) failed: No such file or directory (2) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: session_start() : Cannot send session cookie - headers already sent by (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: session_start() : Cannot send session cache limiter - headers already sent (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 38
I edited in every file the "require_once" with path "path to /tracker/ " and is still show me this errors, how i fix them ?
Thank you !
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The jumble of letters/numbers are the sessions your code is trying to generate. It sounds like the ./tracker folder does not have permission to create session values here.
Open your php.ini file and find where you've specified sessions:
session.cookie_path = "";
The require_once lines should be fine as they were unless you've changed the default folder structure. Simply input the file name if it in the same folder as the current file or "../FILE" if its in a parent folder.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yep, it looks like sessions aren't set up correctly on your webserver. You need to set an area for the session information and make sure apache has write access to it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all, i finished the installation and the site it's working but when i`m trying to connect on …administration/bta_jslogin.php gives me some errors:
Warning: session_start() : open(/public_html/tracker/sess_d2afe868b57d27446d23b541fff152c2, O_RDWR) failed: No such file or directory (2) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: session_start() : Cannot send session cookie - headers already sent by (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: session_start() : Cannot send session cache limiter - headers already sent (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home/gtekro/public_html/tracker/administration/bta_jslogin.php:37) in /home/gtekro/public_html/tracker/administration/bta_jslogin.php on line 38
I edited in every file the "require_once" with path "path to /tracker/ " and is still show me this errors, how i fix them ?
Thank you !
The jumble of letters/numbers are the sessions your code is trying to generate. It sounds like the ./tracker folder does not have permission to create session values here.
Open your php.ini file and find where you've specified sessions:
session.cookie_path = "";
The require_once lines should be fine as they were unless you've changed the default folder structure. Simply input the file name if it in the same folder as the current file or "../FILE" if its in a parent folder.
Yep, it looks like sessions aren't set up correctly on your webserver. You need to set an area for the session information and make sure apache has write access to it.