wordmove验证movefile部分:生产错误此远程没有定义ssh或ftp协议

时间:2017-12-22 10:47:59

标签: ssh ftp movefile

我是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连接工作正常。 有什么建议?

1 个答案:

答案 0 :(得分:0)

您错误地缩进了ssh键。我得到它是因为医生正在考虑将ssh作为一个部分(因此是YAML中的根密钥),所以它应该是这样的:

production:
  vhost:
  wordpress_path:
  [...]
ssh:

ssh必须嵌套在production

production:
  vhost:
  wordpress_path:
  [...]
  ssh:

如果是这种情况,那么医生是对的:production缺少ssh部分。