diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-05 12:28:10 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-05 12:28:10 +0100 |
commit | 59f54822f054598c8ed331902635ed2650eb6b50 (patch) | |
tree | 18f9279577aa73244236553e22fe8bb502925281 | |
parent | 9adff77040933d8df591a0eb6fa4ab4c1da7746f (diff) | |
parent | dc9c5ecdbab5af860b8dce40918dd6b43a46825b (diff) | |
download | nextcloud-server-59f54822f054598c8ed331902635ed2650eb6b50.tar.gz nextcloud-server-59f54822f054598c8ed331902635ed2650eb6b50.zip |
Merge pull request #13918 from owncloud/add-warning-for-54
Show warning for PHP versions older than 5.4.0
-rw-r--r-- | index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/index.php b/index.php index 88d5733cb37..1ab350a2da4 100644 --- a/index.php +++ b/index.php @@ -21,6 +21,14 @@ * */ +// Show warning if a PHP version below 5.4.0 is used, this has to happen here +// because base.php will already use 5.4 syntax. +if (version_compare(PHP_VERSION, '5.4.0') === -1) { + echo 'This version of ownCloud requires at least PHP 5.4.0<br/>'; + echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'; + return; +} + try { require_once 'lib/base.php'; |