From ebd0e986ed11f2a34fb58cdd33efbfab192083ad Mon Sep 17 00:00:00 2001 From: Till Brehm Date: Fri, 22 Apr 2016 11:26:17 +0200 Subject: [PATCH] Added PHP 7 check in installer and updater. --- install/install.php | 5 +++++ install/update.php | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/install/install.php b/install/install.php index 01c59bd74..96c1425ac 100644 --- a/install/install.php +++ b/install/install.php @@ -102,6 +102,11 @@ $dist = get_distname(); if($dist['id'] == '') die('Linux distribution or version not recognized.'); +//** Check the PHP Version +if (version_compare(PHP_VERSION, '7.0.0') >= 0) { + die('PHP 7 is not supported by ISPConfig 3.0.5. Plesae use ISPConfig version 3.1 instead.'); +} + //** Include the autoinstaller configuration (for non-interactive setups) error_reporting(E_ALL ^ E_NOTICE); diff --git a/install/update.php b/install/update.php index 3eeedd0e7..a620c32d1 100644 --- a/install/update.php +++ b/install/update.php @@ -107,6 +107,11 @@ unset($conf); if($dist['id'] == '') die('Linux distribution or version not recognized.'); +//** Check the PHP Version +if (version_compare(PHP_VERSION, '7.0.0') >= 0) { + die('PHP 7 is not supported by ISPConfig 3.0.5. Plesae use ISPConfig version 3.1 instead.'); +} + //** Include the autoinstaller configuration (for non-interactive setups) error_reporting(E_ALL ^ E_NOTICE); -- GitLab