我只想问一下如何更改elfinder的默认上传目录? 在connection.php中有这样的东西。
$opts = array(
// 'debug' => true,
'roots' => array(
array(
'driver' => 'LocalFileSystem', // driver for accessing file system (REQUIRED)
'path' => '../files/', // path to files (REQUIRED)
'URL' => dirname($_SERVER['PHP_SELF']) . '/../files/', // URL to files (REQUIRED)
'accessControl' => 'access' // disable and hide dot starting files (OPTIONAL)
)
)
);
现在所有上传都将转到目录文件。 这是我的文件夹结构:
mywebsite
- video_images
- 1
- 1.jpg
- 2
- 2.jpg
- plugin
- elfinder
-files
我想将默认目录更改为video_images。我怎么能这样做?
答案 0 :(得分:0)
将path
更改为您想要的目录。应该是这样的:
'path' => '../../../mywebsite/video_images', // path to files (REQUIRED)
您需要确保运行PHP的用户有权读取/写入该文件夹,并且应该这样做。