diff options
author | M.Gergo | 2018-07-23 11:58:31 +0200 |
---|---|---|
committer | M.Gergo | 2018-07-23 11:58:31 +0200 |
commit | 2f5969b827ff17ee05e05f46025367017fdfcf44 (patch) | |
tree | cb9e56d5212cd12874bb1ae00812bf2e3bcbbd34 /mayor-orig/www/update.php | |
parent | 0b26d2d6860e7fe428930b97dc953895aa1ca30c (diff) | |
download | mayor-2f5969b827ff17ee05e05f46025367017fdfcf44.tar.gz mayor-2f5969b827ff17ee05e05f46025367017fdfcf44.zip |
Rev: 4340
Diffstat (limited to 'mayor-orig/www/update.php')
-rw-r--r-- | mayor-orig/www/update.php | 56 |
1 files changed, 39 insertions, 17 deletions
diff --git a/mayor-orig/www/update.php b/mayor-orig/www/update.php index 42d06efe..bc2a27df 100644 --- a/mayor-orig/www/update.php +++ b/mayor-orig/www/update.php @@ -1,23 +1,45 @@ <?php if (defined('_LOCKFILE') && @file_exists(_LOCKFILE)) { - echo '<?xml version="1.0" encoding="utf-8"?>'."\n"; - echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">'."\n"; - echo '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="hu">'."\n"; - echo '<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>MaYoR</title></head><body>'."\n"; - echo '<div>'."\n"; - echo '<h1>MaYoR software update</h1>'."\n"; - echo '<p>Hopp! Az automatikus frissítés épp fut, vagy a szolgáltatást a rendszerüzemeltető letiltotta.</p>'."\n"; - echo '<p>Oops! Automatic update process is running or the system administrator has locked down this service.</p>'."\n"; - echo '<p style="font-size:smaller;">'.date('Y-m-d H:i:s').'</p>'; - echo '</div>'."\n"; + header('HTTP/1.1 503 Service Temporarily Unavailable', true, 503); + header('Retry-After: '.gmdate('D, d M Y H:i:s', strtotime('+60 second')).' GMT'); + + echo '<!DOCTYPE html>'."\n"; + echo '<html>'."\n"; + echo '<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">'."\n"; + echo '<title>MaYoR elektronikus napló karbantartás</title>'; + echo '<style type="text/css"> + html {height:100%; min-height: 100%;} + body {font-family: Verdana; background-color: white; +/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a7cfdf+0,23538a+100;Blue+3d+%238 */ +background: rgb(167,207,223); /* Old browsers */ +background: -moz-linear-gradient(-45deg, rgba(167,207,223,1) 0%, rgba(35,83,138,1) 100%); /* FF3.6-15 */ +background: -webkit-linear-gradient(-45deg, rgba(167,207,223,1) 0%,rgba(35,83,138,1) 100%); /* Chrome10-25,Safari5.1-6 */ +background: linear-gradient(135deg, rgba(167,207,223,1) 0%,rgba(35,83,138,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ -echo '<div>'; -$i=0; $i++; -//for ($i=0; $i<count(); $i++) { -// -//} -echo '</div>'; - +} + a {color: cornflowerblue } + h1, h2, footer {text-align: center; margin: 60px; background-color: rgba(255,255,255); color: #444; padding:4px; border-radius: 4px; } + h1 { border-bottom: solid 0px #f06; } + div.content { + font-size:normal; color:white; padding: 5px 60px; + border-left: solid 4px white; + border-right: solid 4px white; + } + </style>'."\n"; + echo '<link rel="shortcut icon" href="/skin/classic/base/img/favicon.ico">'."\n"; + echo '<meta http-equiv="refresh" content="60">'; + echo '</head><body>'."\n"; + + $id = urlencode(getHostname().'+'.$_SERVER['SERVER_NAME'].'+'.$_SERVER['SERVER_ADMIN']); + echo '<div style="width:100%;text-align:center;"><img src="https://www.mayor.hu/skin/mayor/base/img/multiMayorLogo.svg?mayorLock='.$id.'" style="height:120px;" alt="MaYoR"></div>'; + echo '<h1 class=""><sub>M</sub>a<sub>Y</sub><sup>o</sup>R'; + echo ' software update</h1>'."\n"; + echo '<div class="content">'."\n"; + echo '<p>Az automatikus frissítés épp fut, vagy a szolgáltatást a rendszerüzemeltető letiltotta.</p>'."\n"; + echo '<p>The system is down for maintenance.</p>'."\n"; + echo '<p style="font-size:smaller;">'.date('Y-m-d H:i:s').'</p>'; + echo '</div>'."\n"; + echo '<footer><a href="https://www.mayor.hu">mayor.hu</a> elektronikus napló © GPL</footer>'; echo '</body></html>'; } else { header('index.php'); |