在elFinder中打开FTP文件,但不提供详细信息

时间:2017-05-23 06:48:00

标签: php elfinder

我正在使用elFinder来管理我的FTP文件。但我想打开FTP文件和文件夹而不提供FTP详细信息。我将elFinder文件保存在同一个FTP上。可能吗?

在connector.php中:

search_val.trim()

但是当我用这个时。我收到这个错误:

  

无效的后端配置。可读卷不可用。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。要打开文件我们不需要在驱动程序中使用ftp选项只需使用localfilesystem并根据服务器提供文件路径。

$opts = array(
   // 'debug' => true,
  ' roots' => array(
array(
    'driver'        => 'localFileSystem', 
    'path'          => 'path of the folder that you want to browse', 
    'accessControl' => 'access'  ,

            'defaults' => array('read' => true, 'write' => true),
            'disabled' => array('rename', 'rm' , 'copy' ,'cut','paste')
)
    )
        );