我是一名崇高文字的初学者3.之前我曾与梦想家一起工作。当我使用Dream viewer时,通常我会将我的项目文件夹保存在D盘中,并使用dream viewer add site选项在htdoc文件夹中添加新的本地服务器。
现在我需要使用sublime text 3,就像我使用Dream viewer一样。我使用FTP插件设置了一个新的服务器,如下所示
// sftp, ftp or ftps
"type": "ftp",
"sync_down_on_open": true,
"sync_same_age": true,
"host": "127.0.0.1",
"user": "root",
"password": "ashan",
//"port": "22",
"remote_path": "/xampp/htdocs/sanka_d/",
我的远程连接如下(sftp-config.jason)
"type": "ftp",
"save_before_upload": true,
"upload_on_save": true,
"sync_down_on_open": false,
"sync_skip_deletes": false,
"sync_same_age": true,
"confirm_downloads": false,
"confirm_sync": true,
"confirm_overwrite_newer": false,
"host": "127.0.0.1",
"user": "root",
"password": "ashan",
//"port": "22",
"remote_path": "/",
当我尝试连接远程服务器时,它会显示以下错误消息。
连接到FTP服务器“127.0.0.1”作为“root”........ failure(断开连接)
请帮我解决这个问题,谢谢!