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
https://forums.phpfreaks.com/topic/134831-downtime-system/
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
https://forums.phpfreaks.com/topic/134831-downtime-system/#findComment-705230
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.