Hi all,
I've got problems with sessions!
I'm making a login page and when I'm trying to loggin I'm getting an error like this:
Warning: open(/tmp\sess_f5dbb1004971f3a46f052481b1bfd1bb, O_RDWR) failed: No such file or directory (2)
an error like this:
Warning: open(/tmp\sess_f5dbb1004971f3a46f052481b1bfd1bb, O_RDWR) failed: No such file or directory (2)
and an error like this:
Warning: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp)
Do I have to change some things in my php.ini file?
here's a simple php script with a session i use!
<?php
session_start();
$session_id = session_id();
?>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<?php echo($session_id);?>
</body>
</html>
please help me! I'm a rookie and I have never used sessions before!