From dabcaa6a33a76af072a82153c502216951e3a265 Mon Sep 17 00:00:00 2001 From: janxb Date: Fri, 29 Jul 2016 10:28:19 +0200 Subject: [PATCH] added php GD module to required modules. Fixes issue #300 --- install.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install.php b/install.php index 8e2bbc81..fdde03e4 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)';