From a82ab47bd30c2a0fc7fbb64a3fd3e870c6572d0b Mon Sep 17 00:00:00 2001 From: Daniel Tihanyi <65710336+tetragir@users.noreply.github.com> Date: Tue, 20 Jul 2021 16:46:27 +0200 Subject: [PATCH] Extend Grocy REQUIRED_PHP_EXTENSIONS After installing Grocy on FreeBSD, even with all extensions installed that are listed in REQUIRED_PHP_EXTENSIONS, Grocy still couldn't start. The added 3 PHP Extensions are also needed to run Grocy. --- helpers/PrerequisiteChecker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/PrerequisiteChecker.php b/helpers/PrerequisiteChecker.php index 37f6b370..3da28c79 100644 --- a/helpers/PrerequisiteChecker.php +++ b/helpers/PrerequisiteChecker.php @@ -4,7 +4,7 @@ class ERequirementNotMet extends Exception { } -const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json', 'intl', 'zlib']; +const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json', 'intl', 'zlib', 'filter', 'iconv', 'tokenizer']; const REQUIRED_SQLITE_VERSION = '3.9.0'; class PrerequisiteChecker