[ Index ]

PHP Cross Reference of phpwcms V1.5.0 _r431 (28.01.12)

title

Body

[close]

/ -> dbdown.php (source)

   1  <?php
   2  /*************************************************************************************
   3     Copyright notice
   4     
   5     (c) 2002-2012 Oliver Georgi <oliver@phpwcms.de> // All rights reserved.
   6   
   7     This script is part of PHPWCMS. The PHPWCMS web content management system is
   8     free software; you can redistribute it and/or modify it under the terms of
   9     the GNU General Public License as published by the Free Software Foundation;
  10     either version 2 of the License, or (at your option) any later version.
  11    
  12     The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html
  13     A copy is found in the textfile GPL.txt and important notices to the license 
  14     from the author is found in LICENSE.txt distributed with these scripts.
  15    
  16     This script is distributed in the hope that it will be useful, but WITHOUT ANY 
  17     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  18     PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  19   
  20     This copyright notice MUST APPEAR in all copies of the script!
  21  *************************************************************************************/
  22  
  23  // sending system down message and send 503
  24  
  25  header('HTTP/1.1 503 Service Temporarily Unavailable');
  26  header('Retry-After: 3600');
  27  
  28  ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  29  <html xmlns="http://www.w3.org/1999/xhtml">
  30  <head>
  31  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  32  <title>Sorry</title>
  33  <style type="text/css">
  34  <!--
  35  body,td,th {
  36      font-family: Verdana, Arial, Helvetica, sans-serif;
  37      font-size: 12px;
  38      color: #000000;
  39  }
  40  body {
  41      background-color: #FFFFFF;
  42      margin-left: 15px;
  43      margin-top: 25px;
  44      margin-right: 15px;
  45      margin-bottom: 15px;
  46      text-align: center;
  47  }
  48  h1 {
  49      font-family: Verdana; Arial, Helvetica, sans-serif;
  50      font-size: 18px;
  51      font-weight: bold;
  52      margin: 0 0 10px 0;
  53  }
  54  p {
  55      margin: 0 0 5px 0;
  56  }
  57  -->
  58  </style></head>
  59  
  60  <body><h1>We are sorry!</h1>
  61  <p>For service reasons the system is temporarily not attainable.</p>
  62  <p>Visit us later again!</p>
  63  </body>
  64  </html>


Generated: Sun Jan 29 16:31:14 2012 Cross-referenced by PHPXref 0.7.1