diff options
author | patdenice <patdenice@piwigo.org> | 2008-10-15 17:50:12 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-10-15 17:50:12 +0000 |
commit | 682220bded5b06a15943d2c0b65978fbcf3c43f1 (patch) | |
tree | 77f0fd0148158bd1e03c9f9fba058f5fbf72c174 /upgrade.php | |
parent | 847a842e8d4ed1855838f5d8ab514fbf22cb164b (diff) |
- Install process now looks like goto/roma.
- Move install.tpl to goto template.
- add charset utf8 to fatal error function.
- Check php version on install and upgrade, and die if < 5.
git-svn-id: http://piwigo.org/svn/trunk@2747 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | upgrade.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/upgrade.php b/upgrade.php index bf726cc6e..0c324d10a 100644 --- a/upgrade.php +++ b/upgrade.php @@ -21,6 +21,12 @@ // | USA. | // +-----------------------------------------------------------------------+ +//check php version +if (version_compare(PHP_VERSION, '5', '<')) +{ + die('Piwigo requires PHP 5 or above.'); +} + define('PHPWG_ROOT_PATH', './'); include_once(PHPWG_ROOT_PATH.'include/functions.inc.php'); |