Please Help... Serious Problem

windows

Guest
I have some php files that use session_start... But When I have that it gives me some weird error messages...

Warning: session_start() [function.session-start]: open(C:\Apache2\save\sess_3e12b9224a196b87cb546bb735fa3e74, O_RDWR) failed: No such file or directory (2) in E:\Web\Rsm\index.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at E:\Web\Rsm\index.php:2) in E:\Web\Rsm\index.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at E:\Web\Rsm\index.php:2) in E:\Web\Rsm\index.php on line 2

Can You Help me Fix these!!!



[edit] and if this is anyhelp I am useing winlamp 4and I also Have one more question... How Would I make it so When a User on my webpage clicked a button it would start a bat file on the serverSounds like your PHP configuration is expecting to store/retrieve session data in a directory (C:\Apache2\save) which either does not exist or is not writeable by PHP. Either make sure that directory exists and is writeable by all, or change your configuration to point to another useable directory.the directory exists....oh I figured it out... I have two Operatiing systems on my computer... one is xp pro and the other is server 2003 and I am running apache and php in windows 2003 and I had it set to the windows xp drive witch is c... but the server 2003 drive is e so i should be E:\Apache2\Save

Thanks
 
Back
Top