diff --git a/install.php b/install.php index f4799e42..ab9b56f8 100644 --- a/install.php +++ b/install.php @@ -200,6 +200,16 @@ function checkSystem() array_push($stdOut, $tmp); } + if(!in_array('gd', $phpModules)) + { + $errorText = 'PHP module GD is not installed.'; + error_log($errorText, 0); + + $tmp['title'] = 'PHP module'; + $tmp['errorText'] = $errorText; + array_push($stdOut, $tmp); + } + if(!in_array('dom', $phpModules)) { $errorText = 'PHP module DOM is not installed. (ERR_203)';