From c5f260df74cb20a3bda9a22bbb3d473e6a10a060 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 17 Dec 2025 08:24:06 +0100 Subject: [PATCH 1/3] always include vendor/autoload.php (was not included in install mode) --- inc/inc.Settings.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/inc/inc.Settings.php b/inc/inc.Settings.php index 5ff65c570..1a21097e7 100644 --- a/inc/inc.Settings.php +++ b/inc/inc.Settings.php @@ -78,8 +78,6 @@ if(isset($settings->_maxExecutionTime)) { */ ini_set('include_path', $settings->_rootDir. PATH_SEPARATOR .ini_get('include_path')); -/* composer is installed in vendor directory, but install tool does not need it */ -if(!defined("SEEDDMS_INSTALL")) - require_once 'vendor/autoload.php'; +require_once 'vendor/autoload.php'; require_once "inc.Version.php"; From 11943c0da9924822a4ea33b4486aea9562ea63c3 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 17 Dec 2025 08:24:37 +0100 Subject: [PATCH 2/3] include vendor/autoload.php --- install/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install/install.php b/install/install.php index 62aebae50..88b61025b 100644 --- a/install/install.php +++ b/install/install.php @@ -62,6 +62,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ /** * Load default settings + set */ +require_once '../vendor/autoload.php'; require_once('../inc/inc.Version.php'); $ver = new SeedDMS_Version(); define("SEEDDMS_INSTALL", "on"); From e033e886bf0fdae237e4f9f9ad3736c2329a73ad Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 17 Dec 2025 08:25:40 +0100 Subject: [PATCH 3/3] add changes in 5.1.44 --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index da7d4e9cd..11d39ab0c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ -------------------------------------------------------------------------------- Changes in version 5.1.44 -------------------------------------------------------------------------------- +- fix php error in install tool -------------------------------------------------------------------------------- Changes in version 5.1.43