Place this at the very top of your me page <?php if($_SESSION['user']['rank'] >= 7){ ?> then place this at the very bottom <?php } else{header('Location: http://www.domain.com/maintenance');} ?> and also remove the checkmaintenance.php or something on the index's page.
Open your /app/class.core.php, look for this code elseif($_GET['url'] != 'maintenance') and change it to this elseif($_GET['url'] != 'maintenance' && $_SESSION['user']['rank'] !>= 6) So now only Administrator's and above could enter during maintenance mode.
I think on some revcms it's coded in checkban.php or something, so i would just suggest doing an include of the page into your client such the other pages like /me and etc.
Hey Devbest! I have been working on a cms for sometime which is a habbo themed cms. Hadn't done much on it but added stuff's but now i am doing my first release with some of the stuff i added, it's a diceroller and a failed login attempts log. To start with the dice roller, it's like you place a...