Upgraded to 5.5.2.1 and now can't exit maintenance mode
Permalink 1 user found helpfulHelp!

Anyway.. thanks weyboat!
Thanks for this info. Helped a newbie tremendously....
change code to this Assumming your admin :
defined('C5_EXECUTE') or die(_("Access Denied."));
Loader::model('user');
if ((!$c->isAdminArea()) && ($c->getCollectionPath() != '/login')) {
$smm = Config::get('SITE_MAINTENANCE_MODE');
$u = new User();
if ($smm == 1 && $u->getUserName() != "admin") {
$v = View::getInstance();
$v->render('/maintenance_mode/');
exit;
}
}
You should now not only access you site but also do build and edit the front end.