Till Brehm
2016-04-22 ebd0e986ed11f2a34fb58cdd33efbfab192083ad
Added PHP 7 check in installer and updater.
2 files modified
10 ■■■■■ changed files
install/install.php 5 ●●●●● patch | view | raw | blame | history
install/update.php 5 ●●●●● patch | view | raw | blame | history
install/install.php
@@ -102,6 +102,11 @@
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);
install/update.php
@@ -107,6 +107,11 @@
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);