I am having difficulty accessing my admin page, I am entering the password I set in config.advanced.php but it keeps bringing the password box up again.
The login cookie includes your IP address in the hash, so this can happen if you are behind a proxy server group that is causing your IP address to be presented differently. To avoid this from happening, edit includes/admin.php and look for the following code at line 861:
if (isset($admin_checkPassword) && $admin_checkPassword)
...and REPLACE with:
$_SERVER["REMOTE_ADDR"] = "127.0.0.1";
if (isset($admin_checkPassword) && $admin_checkPassword)
Hi,
The login cookie includes your IP address in the hash, so this can happen if you are behind a proxy server group that is causing your IP address to be presented differently. To avoid this from happening, edit includes/admin.php and look for the following code at line 861:
if (isset($admin_checkPassword) && $admin_checkPassword)
...and REPLACE with:
$_SERVER["REMOTE_ADDR"] = "127.0.0.1";
if (isset($admin_checkPassword) && $admin_checkPassword)
Cheers,
David.
--
PriceTapestry.com