Hello, I have PHP setup for one of my domains as a FCGI. This was necessary to run a particular program on that server. (Media Temple (dv)) Now I have an issue with a php script for whatever reason I cannot write session data. Here is what I found in my error log [Sun Dec 27 11:33:43 2009] [warn] mod_fcgid: stderr: PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: open(/var/www/vhosts/URL/httpdocs/sess//sess_nbhn5aancvd1fotf5g6m2cjmo5, O_RDWR) failed: No such file or directory (2) in /var/www/vhosts/URL/httpdocs/sess_test.php on line 10 [Sun Dec 27 11:17:35 2009] [warn] mod_fcgid: stderr: PHP Warning: session_write_close() [<a href='function.session-write-close'>function.session-write-close</a>]: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in /var/www/vhosts/URL/httpdocs/sess_test.php on line 18 Code (markup): Not sure what I need to do to fix this problem.
From the second error, it seems that there is a problem with session.save_path value. Make sure that the path is set correctly as well as it is writable. Kailash