Forum Moderators: bakedjake
Then I want to move the zipped files directly to the new server .. reason .. really slow connection to desktop and I get packet loss.
Lets say Server1/username moved to Server2 /username
I have root access and SSH access.
If your sites are all in the same sort of structure then do it with one file:
e.g.
/home/site1/public_html
/home/site2/public_html
/home/site3/public_html
cd /home
tar -cvf old_sites.tar *
gzip old_sites.tar
scp old_sites.tar.gz username@newsite.com:/home
on the new server the old_sites.tar.gz should be in /home
cd /home
gunzip old_sites.tar.gz
tar -xvf old_sites.tar /home/