This is a discussion on php installation problem within the PHP General forums, part of the PHP Programming Forums category; Just installed apache and am looking at an error Warning: session_start() [function.session-start]: open(C:\DOCUME~1\Ross\LOCALS~...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Just installed apache and am looking at an error
Warning: session_start() [function.session-start]: open(C:\DOCUME~1\Ross\LOCALS~1\Temp\php\upload\ses s_ob822kp9sqlndjvu089r845e50, O_RDWR) failed: No such file or directory (2) in C:\Apache\Apache2\htdocs\ssn\editor.php on line 4 Should I set up a local folder to save the session data or something. Do I set this up in the php.ini or apache config? R. |
|
|||
|
Ross wrote:
> Just installed apache and am looking at an error > > Warning: session_start() [function.session-start]: > open(C:\DOCUME~1\Ross\LOCALS~1\Temp\php\upload\ses s_ob822kp9sqlndjvu089r845e50, > O_RDWR) failed: No such file or directory (2) in > C:\Apache\Apache2\htdocs\ssn\editor.php on line 4 > > Should I set up a local folder to save the session data or something. Do I > set this up in the php.ini or apache config? Well it's trying to save here: C:\DOCUME~1\Ross\LOCALS~1\Temp\php\upload\ You can either create the path, make sure it has appropriate permissions. Or tell php where to save the session and create that folder (and check permissions). See http://www.php.net/manual/en/functio...-save-path.php -- Postgresql & php tutorials http://www.designmagick.com/ |