session
I have just started learning php. I am working through sessions. I have copied example code from 'Beginning PHP, Apache, MySQL Web Development' - Chapter 2 exactly as it is in the book but i get the following errors:
Warning:session_start():open(/tmp\sess_919a8e5436ffe773095f79d46121525d, O_RDWR)failed:No such file or directory in C:\Program Files\Apache Group\Apache2\test\movie1.php on line 2
Warning:session_start():Cannot send session cache limiter - headers already sent by (output started at C:\Program Files\Apache Group\Apache2\test\movie1.php:2)in C:\Program Files\Apache Group\Apache2\test\movie1.php on line 2
Warning: Unknown():open(/tmp\sess_919a8e5436ffe773095f79d46121525d, O_RDWR)failed:No such file or directory (2) in Unknown on line 0
Warning:Unknown():Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0.
I have created a sessiondata directory thus session.save_path
C:\Documents and Settings\All users\Documents\sessiondata
What do these errors mean? What do i have to do to get rid of them?
Please Help nav
|