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

问题描述 投票:0回答:1

我是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 ftp movefile
1个回答
0
投票

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

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

ssh必须嵌套在production

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

如果是这样,那么医生是对的:你的production缺乏ssh部分。

© www.soinside.com 2019 - 2024. All rights reserved.