Posted by blackwater dev on 10/17/40 11:28
I have an old site which uses this code on login:
//it does a query then
if ($affected_rows>0){
session_start(mysite);
session_register('admin');
$wardadmin = yes;
header("location: admin.php");
}
and in the top of admin.php:
session_start(mysite);
if (@$admin != "yes")
{
header("location: login.php");
exit;
}
The host recently upgraded to php 4.4 and now the login doesn't work.
I do notice when I login that the page goes to admin the right back to
login. Why doesn't admin see the session var?
Thanks!
Navigation:
[Reply to this message]
|