check for required min version of php every time (frontend and cron), fixes #833

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2020-05-08 09:58:45 +02:00
parent 85dfc1030a
commit edc702dafa
3 changed files with 60 additions and 0 deletions

View File

@@ -14,6 +14,12 @@
* @package Cron
*
*/
// validate correct php version
if (version_compare("7.0.0", PHP_VERSION, ">=")) {
die('Froxlor requires at least php-7.0. Please validate that your php-cli version and the cron execution command are correct.');
}
require dirname(__DIR__) . '/vendor/autoload.php';
\Froxlor\Cron\MasterCron::setArguments($argv);