我是wordmove的新手。我在我的本地服务器上创建了movefile.yml但是医生命令说:
▬▬ ✓ Validating movefile section: production ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
error | This remote has not ssh nor ftp protocol defined
▬▬ ✓ Validating movefile section: ssh ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
error | This remote has not ssh nor ftp protocol defined
我的远程服务器托管在godaddy上,终端ssh连接完美无缺。有什么建议?
你有错误的ssh
键缩进。我得到它是因为医生正在考虑将ssh
作为一个部分(因此是YAML中的根键),所以它应该是这样的:
production:
vhost:
wordpress_path:
[...]
ssh:
但ssh
必须嵌套在production
内
production:
vhost:
wordpress_path:
[...]
ssh:
如果是这样,那么医生是对的:你的production
缺乏ssh
部分。