From 5cb99c75edf738fe3737434237d1279fd7c165f5 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Tue, 24 Feb 2026 18:36:32 +0300 Subject: [PATCH] =?utf8?q?fix(ERP-236):=20fix=20basePath=20=E2=80=94=20use?= =?utf8?q?=20@app=20instead=20of=20@app/web=20for=20uploads?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Files are stored in erp24/uploads/, not erp24/web/uploads/. Co-Authored-By: Claude Opus 4.6 --- erp24/commands/ConvertVideoController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp24/commands/ConvertVideoController.php b/erp24/commands/ConvertVideoController.php index dbf31688..4763489c 100644 --- a/erp24/commands/ConvertVideoController.php +++ b/erp24/commands/ConvertVideoController.php @@ -140,7 +140,7 @@ class ConvertVideoController extends Controller $converted = 0; $skipped = 0; $errors = 0; - $basePath = Yii::getAlias('@app') . '/web'; + $basePath = Yii::getAlias('@app'); foreach ($files as $i => $file) { $num = $i + 1; -- 2.39.5