Jump to content

Downtime system


plasmagames

Recommended Posts

I would like to get a downtime system going, where you(admin) can check a box that enables downtime. When in downtime, if you go to the site it displays a page, that says a message like  "Plasma Steel Games is Temporary Down for maintenance"  with a liek below that allows admins to login so that you can take it out of Downtime mode. Post if you can help me out.

Link to comment
Share on other sites

 

You'd need to add a table in your db and have a function of some sort that checks against it, and is also included in every page.

 

An untested snippet would probably look  like

<?php
$result = mysql_query("SELECT * FROM tablename") or die(mysql_error()); 
$row = mysql_fetch_array( $result );
if($row[downtime] == 1)
{
echo "your downtime message"; }
else 
{
your usual site content 
}
?>

 

An then include the above in an external file on every page.

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.