streams/include/system_unavailable.php

17 lines
289 B
PHP
Raw Normal View History

2021-03-01 23:33:07 +00:00
<?php
require_once("include/network.php");
function system_down() {
2021-03-01 23:33:07 +00:00
http_status(503, 'Service Unavailable');
echo <<< EOT
2010-07-01 23:48:07 +00:00
<html>
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
2021-03-01 23:33:07 +00:00
EOT;
2021-03-01 23:33:07 +00:00
}