Whenever I start a session I get these errors.
Warning: session_start(): open(/tmp\sess_48063a07cdd6654741fad0fc78e9ecc3, O_RDWR) failed: No such file or directory (2) in D:\WWW\Apache2\htdocs\MD-design\md5.php on line 2
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at D:\WWW\Apache2\htdocs\MD-design\md5.php:2) in D:\WWW\Apache2\htdocs\MD-design\md5.php on line 2
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at D:\WWW\Apache2\htdocs\MD-design\md5.php:2) in D:\WWW\Apache2\htdocs\MD-design\md5.php on line 2
Warning: Cannot modify header information - headers already sent by (output started at D:\WWW\Apache2\htdocs\MD-design\md5.php:2) in D:\WWW\Apache2\htdocs\MD-design\md5.php on line 3
when this is my code:
<?php
session_start();
header("Cache-control: private");
?>
as far as I know, this is as simple as it gets. I think it might be something with my server (it's right out of the box, Apache 2 and PHP 4.3.3)
any known issues?