From: Davide Franco Date: Wed, 22 Jun 2011 11:28:23 +0000 (+0200) Subject: bacula-web: php version check added to test page X-Git-Tag: Release-5.2.1~298 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6c9a3cf148005f22ea10570e74cc4a4e73816f90;p=bacula%2Fbacula bacula-web: php version check added to test page --- diff --git a/gui/bacula-web/test.php b/gui/bacula-web/test.php index 16e2bace20..139031a45e 100644 --- a/gui/bacula-web/test.php +++ b/gui/bacula-web/test.php @@ -39,7 +39,10 @@ 'check_descr' => 'PHP PostgreSQL support must be installed in order to run bacula-web with PostgreSQL bacula catalog'), array( 'check_cmd' => 'smarty-cache', 'check_label' => 'Smarty cache folder write permission', - 'check_descr' => 'Smarty template engine need write permissions to templates_c folder') + 'check_descr' => 'Smarty template engine need write permissions to templates_c folder'), + array( 'check_cmd' => 'php-version', + 'check_label' => 'PHP version', + 'check_descr' => 'PHP version must be at least 5.0.0 (current = ' . PHP_VERSION . ')' ) ); // Doing all checks @@ -64,6 +67,11 @@ case 'smarty-cache': $check['check_result'] = $check_result[ is_writable( "./templates_c" ) ]; break; + case 'php-version': + $phpversion = explode( '.', PHP_VERSION ); + $phpversion = $phpversion[0]; + $check['check_result'] = $check_result[ $phpversion >= 5 ]; + break; } }