]> source.dussan.org Git - nextcloud-server.git/commitdiff
Nextcloud is not compatible with PHP 7.1 824/head
authorLukas Reschke <lukas@statuscode.ch>
Wed, 10 Aug 2016 12:28:50 +0000 (14:28 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Wed, 10 Aug 2016 12:30:19 +0000 (14:30 +0200)
Make the code fail hard before people update and then experience some half-broken stuff. See also https://github.com/nextcloud/docker-ci/issues/10

index.php

index 2b344dadfff9a8de8d444c495ac18fe7880cf224..e42a0bbd7bc22099b216443b24bc4238c3a84544 100644 (file)
--- a/index.php
+++ b/index.php
@@ -33,6 +33,14 @@ if (version_compare(PHP_VERSION, '5.4.0') === -1) {
        return;
 }
 
+// Show warning if PHP 7.1 is used as Nextcloud is not compatible with PHP 7.1 for now
+// @see https://github.com/nextcloud/docker-ci/issues/10
+if (version_compare(PHP_VERSION, '7.1.0') !== -1) {
+       echo 'This version of Nextcloud is not compatible with PHP 7.1.<br/>';
+       echo 'You are currently running ' . PHP_VERSION . '.';
+       return;
+}
+
 try {
        
        require_once 'lib/base.php';