如何在 Vtiger 中更改上传目录
How to change upload directory in Vtiger
当用户在 Vtiger(Producte 模块)中上传图片时创建了自动路径。现在图像路径的形式为 /storage/2016/May/week2/26540_IMG_NAME.png
。我需要把它改成 /storage/product/IMG_NAME.png
。我该怎么做?
Vtiger 版本 6.3.0
您必须在 \vtlib\Vtiger\Functions.php
中更改以更改上传目录路径。
-- 确保你创建的目录有读写权限
static function initStorageFileDirectory() {
//change the directory path by modifying the $filepath
}
希望对您有所帮助。谢谢!
当用户在 Vtiger(Producte 模块)中上传图片时创建了自动路径。现在图像路径的形式为 /storage/2016/May/week2/26540_IMG_NAME.png
。我需要把它改成 /storage/product/IMG_NAME.png
。我该怎么做?
Vtiger 版本 6.3.0
您必须在 \vtlib\Vtiger\Functions.php
中更改以更改上传目录路径。
-- 确保你创建的目录有读写权限
static function initStorageFileDirectory() {
//change the directory path by modifying the $filepath
}
希望对您有所帮助。谢谢!