我可以从 elFinder 成功打开单个FTP 连接(与或不使用LocalFileSystem,MySQL等不同的驱动程序。)
但是,我无法在同一个 elFinder 窗口中打开2个或更多个FTP 连接。
我已经尝试了以下配置,但到目前为止没有运气:
'roots' => array(
array(
'driver' => 'FTP',
'host' => 'host1',
'user' => 'usr1',
'pass' => 'pwd1',
'port' => 21,
'mode' => 'passive',
'path' => '/',
'timeout' => 20,
'alias' => 'My FTP 1',
'owner' => true,
'tmbPath' => '/tmp',
'tmpPath' => '/tmp',
'dirMode' => 0755,
'fileMode' => 0644
),array(
'driver' => 'FTP',
'host' => 'host2',
'user' => 'usr2',
'pass' => 'pwd2',
'port' => 21,
'mode' => 'passive',
'path' => '/',
'timeout' => 20,
'alias' => 'My FTP 2',
'owner' => true,
'tmbPath' => '/tmp',
'tmpPath' => '/tmp',
'dirMode' => 0755,
'fileMode' => 0644
)
)
P.S。我可以成功打开FTP/LocalFileSystem
对根,但如何打开FTP/FTP
对?我错过了什么吗?