From a1c519d938b848edffcbf7fbbe6a3fdb9a5394f1 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Tue, 14 Jan 2025 09:07:10 +0300 Subject: [PATCH] fix(installer): Missing `gd` extension (#1749) --- README.md | 2 +- install.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42fc17dbd..06db7091d 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ and go from there. The documentation will be translated into english in the near * Apache / nginx * MySQL 5.5.3 or above / MariaDB 10.0 or above / Percona * PHP: 8.1 / 8.2 / 8.3 -* PHP Extensions: mbstring, bcmath, intl, tidy (optional), xml, xmlwriter +* PHP Extensions: mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter * Crontab (Recommended) ## 💾 Installation diff --git a/install.php b/install.php index aafd6ba44..a637c4a30 100644 --- a/install.php +++ b/install.php @@ -29,7 +29,8 @@ define('CHECK_REQUIREMENTS', [ 'intl', 'xml', 'xmlwriter', - 'zip' + 'zip', + 'gd' ], ]);