Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-07-19 18:11:32 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-07-21 10:40:47 +0300
commit091cba8374a76048182bec56923ffc79401e8d14 (patch)
treef4a815350aeac74dd4f6d94483f8d32c501ef176 /console.php
parent336ce139ae50973f46e029ddf8a02f9f5e7a5a12 (diff)
Show warning if PHP 7.2 is used
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'console.php')
-rw-r--r--console.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/console.php b/console.php
index 47cc2edf018..517032c2665 100644
--- a/console.php
+++ b/console.php
@@ -39,6 +39,14 @@ if (version_compare(PHP_VERSION, '5.6.0') === -1) {
return;
}
+// Show warning if PHP 7.2 is used as Nextcloud is not compatible with PHP 7.2 for now
+// @see https://github.com/nextcloud/server/pull/5791
+if (version_compare(PHP_VERSION, '7.2.0') !== -1) {
+ echo 'This version of Nextcloud is not compatible with PHP 7.2.<br/>';
+ echo 'You are currently running ' . PHP_VERSION . '.';
+ return;
+}
+
function exceptionHandler($exception) {
echo "An unhandled exception has been thrown:" . PHP_EOL;
echo $exception;