我安装Yii 2 File kit extendsion,并设置本地文件存储成功。 然后我配置SFTP然后运行命令
Yii::$app->fileStorage1->getFilesystem()->createDir('demo')
所以它不起作用。并且只显示结果为false。 所以我不知道错误是什么。
我尝试conffig:
'fileStorage1' => [
'class' => '\trntv\filekit\Storage',
//'baseUrl' => '@storageUrl1',
//'filesystemComponent' => 'fs'
'filesystemComponent' => 'sftpFs'
],
'sftpFs' => [
'class' => 'creocoder\flysystem\SftpFilesystem',
'host' => 'Myserver',
'port' => 22,
'username' => 'u',
'password' => 'p',
//'privateKey' => '/path/to/or/contents/of/privatekey',
// 'timeout' => 60,
'root' => 'public_html',
// 'permPrivate' => 0700,
// 'permPublic' => 0744,
],