我可以使用Sublime SFTP插件(从这里)建立FTPS连接类型吗?
我以前使用的是Notepad ++和NppFTP插件,但我想迁移到Sublime Text但是我在使用SFTP插件连接到我的服务器时遇到了问题.这是我的配置文件:
"type": "ftps",
"sync_down_on_open": true,
"sync_same_age": true,
"host": "xxxxxxxxxxxxx.org",
"user": "xxxxx@xxxxxxxxxxxxx.org",
"password": "xxxxx",
"port": "21",
"remote_path": "/home/xxxxxxxx/public_html",
"connect_timeout": 30,
Run Code Online (Sandbox Code Playgroud)
我一直在尝试多次更改remote_path,但我无法使其工作.我一直在收到这个错误:
连接到FTPS服务器"xxxxxxxxxxxxx.org"为"xxxxx@xxxxxxxxxxxxx.org"....成功验证远程文件夹"/ home/xxxxxxxx/public_html"..失败(找不到文件夹)多次断开连接错误,放弃
在我的Cpanel中,所有FTP用户的路径都设置为/ home/cpanel_username/public_html.
我也尝试将remove_path设置为"/",我得到另一个错误:
验证远程文件夹"/"....失败(已断开连接)
任何想法我怎么能让它工作?