[RevCMS]Admin login when maintenance is on.

Don

New Member
Jul 25, 2012
8
3
LoL some on needs to code that page to not redirect it to maintenance when logging in if you have a index for that you need the maintenance page removed for that login
 
Jan 17, 2012
649
166
LoL some on needs to code that page to not redirect it to maintenance when logging in if you have a index for that you need the maintenance page removed for that login
For UberCMS, it's
PHP:
if (LOGGED_IN && $users->HasFuse(USER_ID, 'fuse_ignore_maintenance'))
{
    header("Location: " . WWW . "/");
    exit;
}
Then you change the rank to ignore maintenance in your database.
 

Users who are viewing this thread

Top