Stuck in maintenance mode?

Permalink 1 user found helpful
I put my site into maintenance mode last night. It was stuck in that mode this morning and I tried going to my dashboard page, but that did not work. I copied the "make_live" file into my tools folder and that seemed to get me out of maintenance mode, but now I am stuck in a loop between login pages. Yesterday, I created a new log in page and moved the old one to my draft folder and I am thinking that is the problem. Help!

 
mkly replied on at Permalink Reply
mkly
You can put this in you /tools directory

Name it like logmein.php
<?php
$u = new User();
$u->loginByUserID(1);


Then browse to
http://www.example.com/index.php/tools/logmein.php...

You are now logged in as admin. Then go to
http://www.example.com/index.php/dashaboard...

and sort out the page issues.
dheilor replied on at Permalink Reply
Thank you so much! You made my day! Thanks for the quick response.
mkly replied on at Permalink Reply
mkly
Word up. Remember to remove that file as you wouldn't want anyone logging themselves into your site.
dheilor replied on at Permalink Reply
Will do. Thanks again.