0

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

4

1 回答 1

0

将您更改path为所需的目录。应该是这样的:

 'path' => '../../../mywebsite/video_images', // path to files (REQUIRED)

您需要确保运行 PHP 的用户有权读取/写入该文件夹,并且应该这样做。

于 2015-03-07T19:34:31.970 回答