PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Warning: session_start(): open(/tmp\sess_a1c40f1e51d34760eb047e976b402315, O_RDWR) failed: No such file or directory (2) in d:\belajar\php belajar\session\buatsesi.php on line 2
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at d:\belajar\php belajar\session\buatsesi.php:2) in d:\belajar\php belajar\session\buatsesi.php on line 2
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at d:\belajar\php belajar\session\buatsesi.php:2) in d:\belajar\php belajar\session\buatsesi.php on line 2
Session_id : a1c40f1e51d34760eb047e976b402315
Warning: session_destroy(): Session object destruction failed in d:\belajar\php belajar\session\buatsesi.php on line 6
After close session
Session_id :
how can it be happen? thanks
Last edited by unix77 on Tue Jun 07, 2005 6:55 am, edited 1 time in total.
<html>
<head>
</head>
<body>
<?php
// body
?>
</body>
</html>
(Even a blank line will cause the error).
The first error "/tmp\sess_a1c40f1e51d34760eb047e976b402315, O_RDWR) failed". Do you have read/write access to the /tmp directory. If not and you want to move where the "temporary" file storage area change your php.ini
Hopefully this gives you a couple of starting points to look for. I am sure someone will provide more detail.