どうすれば 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 に変更したいと考えています。どうやってやるの?