Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/error/ |
<?php header('HTTP/1.1 503 Service Unavailable'); ?> <html> <head> <title>Error 503: Service Unavailable</title> <style type="text/css"> * { margin: 0; padding: 0; } body { margin: 50px; background: #eee; } .message { padding: 10px; border: 2px solid #f22; background: #f99; margin: 0 auto; font: 120%/1em sans-serif; text-align: center; } p { margin: 20px 0; } a { font-size: 180%; color: #f22; text-decoration: underline; margin-top: 30px; padding: 5px; } </style> </head> <body> <div class="message"> <h1>503 Error</h1> <p><?php echo $errorMessage ? $errorMessage : 'Site temporarily unavailable.'; ?></p> </div> </body> <?php @session_write_close(); exit(); ?>