2

I want to move my files form one web server to another, but I think its a double task to download them and again upload to another one. I was looking for any PHP script or something. Any method that doesn't involve this double traffic process.

  • Hi Santosh. This question is much too open-ended for ServerFault. I'd suggest reading through the FAQ. And also reading through and writing your questions with this post in mind: http://meta.serverfault.com/questions/3608/how-can-i-ask-better-questions-on-server-fault. – Magellan Jan 01 '13 at 22:50
  • Your question doesn't appear to be on topic at Server Fault, as you do not seem to be the server administrator of either server. In this case, you may do better at our sister site [Pro Webmasters](http://webmasters.stackexchange.com/). When you go, be sure to add additional details about the web hosting providers you are using, such as OS, control panels, and any other information that may help others understand your environment and answer your question. – Michael Hampton Jan 01 '13 at 22:54

2 Answers2

4

If you have shell access on both machines, you can simply login to one machine and use scp or rsync to transfer the files directly.

Sven
  • 98,649
  • 14
  • 180
  • 226
1

Yes that is known as File eXchange Protocol (FXP), if you have ftp access to both the server it is simple and easy, here is a good read and a good client also.

BluesRhythm
  • 308
  • 1
  • 5
  • 13