Hello,
I have the simple code:
<?php
session_start();
header("Cache-control: private"
;
?>
But this displays the error message:
PHP Warning: open(/tmp\sess_3f66892ae4cb2b189080529c71659bd3, O_RDWR) failed: No such file or directory (2) in c:\inetpub\ on line 2 PHP Warning: Cannot add header information - headers already sent in c:\inetpub\ on line 3 PHP Warning: open(/tmp\sess_3f66892ae4cb2b189080529c71659bd3, O_RDWR) failed: No such file or directory (2) in Unknown on line 0 PHP 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
What's wrong?
Cheers
James
I have the simple code:
<?php
session_start();
header("Cache-control: private"
?>
But this displays the error message:
PHP Warning: open(/tmp\sess_3f66892ae4cb2b189080529c71659bd3, O_RDWR) failed: No such file or directory (2) in c:\inetpub\ on line 2 PHP Warning: Cannot add header information - headers already sent in c:\inetpub\ on line 3 PHP Warning: open(/tmp\sess_3f66892ae4cb2b189080529c71659bd3, O_RDWR) failed: No such file or directory (2) in Unknown on line 0 PHP 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
What's wrong?
Cheers
James