Littleaxe
Newbie
Posts: 1
Registered: 6/21/2004
Member Is Offline
|
| posted on 6/21/2004 at 03:27 PM |
|
|
Problem After Install
Hi
Im sorry if some1 else has asked this question already but I cannot find it
Im getting this error at the login page
Warning: session_start(): open(/tmp\sess_3143669d4d5e5d323ff5c1ed2a8cd609, O_RDWR) failed: No such file or directory (2) in
\\nas02ent\domains\a\adambulley.com\user\htdocs\calendar\cl_files\index.php on line 13
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at
\\nas02ent\domains\a\adambulley.com\user\htdocs\calendar\cl_files\index.php:13) in
\\nas02ent\domains\a\adambulley.com\user\htdocs\calendar\cl_files\index.php on line 13
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at
\\nas02ent\domains\a\adambulley.com\user\htdocs\calendar\cl_files\index.php:13) in
\\nas02ent\domains\a\adambulley.com\user\htdocs\calendar\cl_files\index.php on line 13
Have checked the file paths and they seem to be correct.
Ne idea nebody?
|
|
|
Fishwagon
Junior Member
Posts: 2
Registered: 8/9/2004
Member Is Offline
|
| posted on 8/9/2004 at 10:49 PM |
|
|
Did you ever figure this out? I have the same exact problem...
|
|
|
Fishwagon
Junior Member
Posts: 2
Registered: 8/9/2004
Member Is Offline
|
| posted on 8/10/2004 at 08:46 PM |
|
|
Ok, figured it out.
It has to do with the session parameters.
I changed the following line in index.php in the cl_files directory:
if(!is_writable(session_save_path()))session_save_path("/tmp");
I replaced the "/tmp" towards the end, with a path to a writable directory on the server.
So mine looks something like this:
if(!is_writable(session_save_path()))session_save_path("E:\Inetpub\wwwroot\dir1\ecalendar\dir2");
|
|
|