-
Notifications
You must be signed in to change notification settings - Fork 0
/
site-php-version.php
89 lines (84 loc) · 3.48 KB
/
site-php-version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
// PHP version error
//
// webtrees: Web based Family History software
// Copyright (C) 2012 webtrees development team.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
define('WT_SCRIPT_NAME', 'site-php-version.php');
// This script does not load session.php.
// It may well invoke code that won’t run on PHP5.2…
// This next block of code is a minimal version of session.php
define('WT_WEBTREES', 'webtrees');
define('WT_ROOT', '');
define('WT_GED_ID', 0);
define('WT_USER_ID', 0);
define('WT_DATA_DIR', realpath('data').DIRECTORY_SEPARATOR);
define('WT_DEBUG_LANG', false); // The translation library needs this
$WT_SESSION=new stdClass();
$WT_SESSION->locale='';
// Invoke the Zend Framework Autoloader, so we can use Zend_XXXXX and WT_XXXXX classes
set_include_path(WT_ROOT.'library'.PATH_SEPARATOR.get_include_path());
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance()->registerNamespace('WT_');
require 'includes/functions/functions.php';
require WT_ROOT.'includes/functions/functions_utf-8.php';
define('WT_LOCALE', WT_I18N::init());
if (version_compare(PHP_VERSION, '5.3.3', '>=')) {
//header('Location: index.php');
}
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html>
<html <?php echo WT_I18N::html_markup(); ?>>
<head>
<meta charset="UTF-8">
<title><?php echo WT_WEBTREES; ?></title>
<meta name="robots" content="noindex,follow">
<style type="text/css">
body {color: gray; background-color: white; font: 14px tahoma, arial, helvetica, sans-serif; padding:10px; }
a {color: #81A9CB; font-weight: bold; text-decoration: none;}
a:hover {text-decoration: underline;}
h1 {color: #81A9CB; font-weight:normal; text-align:center;}
li {line-height:2;}
blockquote {color:red;}
.content {margin:auto; width:800px; border:1px solid gray; padding:15px; border-radius:15px;}
.good {color: green;}
</style>
</head>
<body>
<h1>
<?php echo WT_I18N::translate('This website is temporarily unavailable'); ?>
</h1>
<div class="content">
<p>
<?php echo WT_I18N::translate('This version of webtrees cannot be installed on this web-server.'); ?>
</p>
<p>
<?php echo WT_I18N::translate('You have the following options:'); ?>
</p>
<ul>
<li><?php /* I18N: %s is a version number */ echo WT_I18N::translate('Upgrade the web-server to PHP %s or higher.', '5.3.3'); ?></li>
<li><?php /* I18N: %s is a version number */ echo WT_I18N::translate('Install (or re-install) webtrees %s.', '<a href="https://launchpad.net/webtrees/1.4/1.4.0/+download/webtrees-1.4.0.zip">1.4.0</a>'); ?></li>
</ul>
<p class="good">
<?php echo WT_I18N::translate('If you cannot resolve the problem yourself, you can ask for help on the forums at <a href="http://webtrees.net">webtrees.net</a>'); ?>
</p>
</div>
<!-- <?php echo PHP_VERSION; ?> -->
</body>
</html>