diff options
Diffstat (limited to 'install.php')
-rwxr-xr-x | install.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install.php b/install.php index 6a206fc..07437d3 100755 --- a/install.php +++ b/install.php @@ -48,12 +48,12 @@ if (file_exists(__DIR__ . '/custom/config.yml') && isset($login) && isset($passw } else { // We start by malking sure we have PHP5 as a base requirement - if(version_compare(PHP_VERSION, '5.4.0') >= 0) { - $strInstall = installStatus('Server is running at least PHP 5.4', 'OK',true); + if(version_compare(PHP_VERSION, '5.6.0') >= 0) { + $strInstall = installStatus('Server is running at least PHP 5.6', 'OK',true); $strRecommendation = ''; } else { - $strInstall = installStatus('Server is running at least PHP 5.4', 'FAIL',false); - $strRecommendation = '<li>Check your server documentation to activate at least PHP 5.4</li>'; + $strInstall = installStatus('Server is running at least PHP 5.6', 'FAIL',false); + $strRecommendation = '<li>Check your server documentation to activate at least PHP 5.6</li>'; } // Writable file requirements |