我只想问如何更改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。我怎样才能做到这一点?