ALITTLEweird Posted August 1, 2009 Posted August 1, 2009 Can someone give me a maintenance mode mod? I've been looking around but cant seem to find one :mrgreen: Quote
? Sparks ? Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? Yeah Its called, backing up your index and header file and write "sorry the site Is undergoing maintenance, Be back up soon" Into it :P Quote
Uridium Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? You could just create a sql in the user table alter table users add mainmode INT (11) default 0; add to each script if($ir['user_level'] = 1) { die("<h1>Maintenance Mode Come Back Later</h1>"); } The above will allow staff to go on line rather than members Quote
Faz` Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? What was the point in adding that to the users table? Quote
CraigF Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? What was the point in adding that to the users table? That is exactly what I was going to say! Quote
shedh Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? easy, so you can define who can get into the game whilst maintence mode is turned on by simply changing their "mainmode" number to anything but "1". :) Shedh Quote
Uridium Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? oops my bad it should have been if($ir['mainmode] = 1) snd underneath it should have been else if($ir['user_level'] = 2) you get the idea lol Quote
endo Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? Just place it within header once if($ir['mainmode'] > 1) { die("Undergoing Maintenance."); } and just create a staff option to change maintenance mode for staff... Quote
Danny696 Posted August 1, 2009 Posted August 1, 2009 Re: Maintenance mode? or you could add it to the settings that would be eaiser Quote
EpicFuse Posted August 2, 2009 Posted August 2, 2009 Re: Maintenance mode? or you could have the site lockdown mod works a charm only admins can login. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.