1

I'm newbie in wordmove. I've created movefile.yml in my local server but doctor command says:

▬▬ ✓ 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

my remote server is hosted on godaddy and terminal ssh connection works perfectly. Any suggests?

Marco Allori
  • 3,198
  • 33
  • 25

1 Answers1

1

You have wrong indentation of the ssh key. I got it because the doctor is considering ssh as a section (thus a root key in the YAML), so it should be like:

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

But ssh has to be nested inside production

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

If that is the case, so the doctor is right: your production lacks of the ssh section.

Alessandro Fazzi
  • 1,308
  • 3
  • 12
  • 11