Originally posted by zumone
in admin.php
if (isset($HTTP_COOKIE_VARS['admin'])) {
if (!headers_sent()) {
header("Location: admin.php?id=menu");
exit;
}
}
[/B]
Okay, so let me get this straight. If you hit admin.php, it looks to see if your admin cookie is set. If it is, then you're redirected to admin.php?id=menu where it checks to see if your admin cookie is set. If it is, then you're redirected to admin.php?id=menu...?