I want to copy all of the files and folders from one host to another. The files are on the old host site at /var/www/html.
I only have FTP access to that server, and I can't TAR all the files.
I tried running the following command form my new server:
wget -r ftp://username:password@ip.of.old.host
But the problem is that the username I have is an email address so its not registering it as a username.
For example:
wget -r ftp:// myname@gmail.com:password@ip.of.old.host
This means there are two '@' symbols. I'm not sure but I think it's reading the first @ symbol as the one used in the function.
The output Im getting is wget -r ftp://username:password@ip.of.old.host: Bad port number.
Not sure whats going on and any help is appreciated.