From 0f32f271d5ea618d553df46a35a475fc96b3b8a2 Mon Sep 17 00:00:00 2001 From: Fedor Date: Mon, 20 Oct 2025 17:11:27 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BF=D1=83=D1=82=D1=8C=20Nextcloud=20=D1=81=20?= =?UTF-8?q?/crm2/=20=D0=BD=D0=B0=20/crm/=20=D0=B4=D0=BB=D1=8F=20=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BE=D0=B3=D0=BE=20=D1=81=D0=B5=D1=80=D0=B2=D0=B5?= =?UTF-8?q?=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Изменен active_folder с '/crm2/CRM_Active_Files/' на '/crm/CRM_Active_Files/' - Причина: На новом Nextcloud (office.clientright.ru) S3 примонтирован как /crm (не /crm2) - Папка /crm/CRM_Active_Files/ существует и содержит подпапки Documents и crm2 - Конфигурация соответствует реальной структуре External Storage --- crm_extensions/file_storage/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crm_extensions/file_storage/config.php b/crm_extensions/file_storage/config.php index ff2a83bb..dace35e9 100644 --- a/crm_extensions/file_storage/config.php +++ b/crm_extensions/file_storage/config.php @@ -30,7 +30,7 @@ return [ 'base_url' => EnvLoader::getRequired('NEXTCLOUD_URL'), 'username' => EnvLoader::getRequired('NEXTCLOUD_USERNAME'), 'password' => EnvLoader::getRequired('NEXTCLOUD_PASSWORD'), - 'active_folder' => '/crm2/CRM_Active_Files/', + 'active_folder' => '/crm/CRM_Active_Files/', 'timeout' => 30, ],