diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-10-13 21:30:29 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-12-12 10:55:09 +0100 |
commit | b8af7ee9bc9badb76bbf8d7eb4ff9dcc8744ba6c (patch) | |
tree | fe9a530465f5e6c711a3bbf6ef9b157b07d963ae /lib/versioncheck.php | |
parent | 115e7e29cf60c49ddfebece9c25f35f3c5e5dac4 (diff) | |
download | nextcloud-server-b8af7ee9bc9badb76bbf8d7eb4ff9dcc8744ba6c.tar.gz nextcloud-server-b8af7ee9bc9badb76bbf8d7eb4ff9dcc8744ba6c.zip |
Nextcloud 13 is not compatible with newer than php 7.2
Just to avoid users from trying this with a to new (untested) php version
* Moved the check logic to 1 place
* All directly callable scripts just require this on top
* exit hard (-1) so we know scripts won't continue
* Return status 500 so no sync clients will try fancy stuff
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/versioncheck.php')
-rw-r--r-- | lib/versioncheck.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/versioncheck.php b/lib/versioncheck.php new file mode 100644 index 00000000000..23b09c28e14 --- /dev/null +++ b/lib/versioncheck.php @@ -0,0 +1,18 @@ +<?php + +// Show warning if a PHP version below 5.6.0 is used, this has to happen here +// because base.php will already use 5.6 syntax. +if (version_compare(PHP_VERSION, '5.6.0') === -1) { + http_response_code(500); + echo 'This version of Nextcloud requires at least PHP 5.6.0<br/>'; + echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'; + exit(-1); +} + +// Show warning if > PHP 7.2 is used as Nextcloud is not compatible with > PHP 7.2 for now +if (version_compare(PHP_VERSION, '7.3.0') !== -1) { + http_response_code(500); + echo 'This version of Nextcloud is not compatible with > PHP 7.2.<br/>'; + echo 'You are currently running ' . PHP_VERSION . '.'; + exit(-1); +} |