I want to be able to use sessions but i get warnings.
here is a little script i tried to execute
these are the warnings i get.
Warning: open(/tmp\sess_7cb6a9c6525ddd5d2570f563aab3f56b, O_RDWR) failed: No such file or directory (2) in C:\Program Files\Apache Group\Apache2\htdocs\hits.php on line 3
this page has been viewed 1 times.
Warning: open(/tmp\sess_7cb6a9c6525ddd5d2570f563aab3f56b, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
Warning: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
can anyone tell me what the problem is and how can i fix it.
i am using php version 4.2.3
here is a little script i tried to execute
PHP Code:
<?php
session_start();
session_register('hits');
++$hits;
?>
this page has been viewed <?= $hits ?> times.
Warning: open(/tmp\sess_7cb6a9c6525ddd5d2570f563aab3f56b, O_RDWR) failed: No such file or directory (2) in C:\Program Files\Apache Group\Apache2\htdocs\hits.php on line 3
this page has been viewed 1 times.
Warning: open(/tmp\sess_7cb6a9c6525ddd5d2570f563aab3f56b, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
Warning: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
can anyone tell me what the problem is and how can i fix it.
i am using php version 4.2.3
Comment