|
Revision 1, 0.8 kB
(checked in by aquarion, 2 years ago)
|
First Import
|
| Line | |
|---|
| 1 |
<?PHP |
|---|
| 2 |
/******************************************************************************* |
|---|
| 3 |
Epistula Index - Down |
|---|
| 4 |
******************************************************************************** |
|---|
| 5 |
|
|---|
| 6 |
To replace Epistula.php when the site is down for maintainance |
|---|
| 7 |
|
|---|
| 8 |
$Id: epistula.down,v 1.1.1.1 2004/05/16 17:22:07 aquarion Exp $ |
|---|
| 9 |
|
|---|
| 10 |
$log$ |
|---|
| 11 |
|
|---|
| 12 |
*******************************************************************************/ |
|---|
| 13 |
|
|---|
| 14 |
header( 'HTTP/1.0 503 Service Unavailable' ); |
|---|
| 15 |
$out = "<h1>503 - Service Unavailable</h1>\n"; |
|---|
| 16 |
$out .= "<p>The server's MySQL database is having a Bad Day and can't run queries. We'll be back in a bit</p>"; |
|---|
| 17 |
include("include/epistula.conf"); |
|---|
| 18 |
include("include/class.php"); |
|---|
| 19 |
$page = new html(); |
|---|
| 20 |
$page->title = "Down"; |
|---|
| 21 |
$page->content .= $page->item($out); |
|---|
| 22 |
echo $page->build(); |
|---|
| 23 |
?> |
|---|