Hi,
I was working on my site and I was using sessions. Everything worked fine until this morning when I start seeing following
Warning: session_start(): open(/tmp\sess_b2056c8e875efbb180e40858609925d4, O_RDWR) failed: No such file or directory (2) in d:\vhosts\eager\public_html\wire\includes\application_top.php on line 3
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at d:\vhosts\eager\public_html\wire\includes\application_top.php:3) in d:\vhosts\eager\public_html\wire\includes\application_top.php on line 3
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at d:\vhosts\eager\public_html\wire\includes\application_top.php:3) in d:\vhosts\eager\public_html\wire\includes\application_top.php on line 3
Warning: Cannot modify header information - headers already sent by (output started at d:\vhosts\eager\public_html\wire\includes\application_top.php:3) in d:\vhosts\eager\public_html\wire\includes\application_top.php on line 4
My hosting provider runs windows 2000 and I think the problem is that /tmp directory is not accessible or does not have full permissions, but I am not sure.
My application_top,php starts like this
<?php
if (isset($SessID)){ session_id($SessID); }
session_start();
header("Cache-control: private"); // IE 6 Fix.
setcookie("SessID", session_id(), time() + 1440);
require('includes/configure.php');
require('includes/functions/general.php');
include('includes/error_msg.php');
include('includes/dbtables.php');
......
.....
?>
Any suggestions?
Thanks