Forum Moderators: phranque
I may be missing something here, but its not been all that difficult for me.
good luck.
Patrick
If they're both *nix I'd go with rsync. You could do it with something as simple as the following from the new server:
rsync -vazu -e ssh username@oldhost:/yourpathonoldserver/ /yourpathonnewserver/
For db's, you can mysqldump them, and then import them. I'd recommend testing this a couple days before it goes live. You might run into some weird problems if the versions don't match between the old and new server.
Also check any scripts you have for the same problems. I've been caught with slightly different version numbers, or ini files causing massive php / mysql problems. You can fix them, but it'll take a bit of time to narrow it down.
Good luck :)