PHP4: session_start();
Вот что выдается...
Warning: open(/tmp\sess_13ac51403c80e172ff3791e06a70f874, O_RDWR) failed: No such file or directory (2) in d:\home\www\login\index.php on line 29
-------------------
if (!$HTTP_POST_VARS[user_name])
{
header("Expires: Thu, 01 Jan 1970 00:00:01 GMT");
print "<html><head><title></title></head><body>";
echo "<hr>";
logform();
}
else {
$uname = $HTTP_POST_VARS[user_name];
$upass = $HTTP_POST_VARS[user_pass];
session_start();
header("Expires: Thu, 01 Jan 1970 00:00:01 GMT");
print "<html><head><title></title></head><body>";
echo "<hr>";
print "$uname $upass";
};
print "</body></html>";
------------------
Я так понял, что проблема с путями в PHP.ini (у меня Win32), но мои попытки исправить что-липо остальсь безуспешны...
|