Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I have a problem in transferring file from server to server I want to copy file like:

http://mysite1.com/myfile.jpg <-- I want this to copy or upload via ftp to mysite2.com

For example: http://mysite1.com/myfile.jpg upload to http://mysite2.com/fileuploads/

How to do this via PHP FTP transferring ? Any hardcoder here can help my problem?

Thank you. Any help very much appreciated.

share|improve this question
What's your problem? Have you read through this: no.php.net/manual/en/book.ftp.php ? – Jørgen Nov 29 '11 at 6:57
You say you have a problem in transferring a file from one server to another. You never state what is your problem. You just say give me teh codez. You don't have to be a hardcoder to read the manual. – bažmegakapa Nov 29 '11 at 7:16

2 Answers

up vote 2 down vote accepted

Well here's one sample code, but you should read and try on your own before asking:

$connection = ftp_connect($server);

$login = ftp_login($connection, $ftp_user_name, $ftp_user_pass);

if (!$connection || !$login) { die('Connection attempt failed!'); }

$upload = ftp_put($connection, $dest, $source, $mode);

if (!$upload) { echo 'FTP upload failed!'; }

ftp_close($connection); 

Hope it helps you getting started

share|improve this answer

You can do it, but you should try yourself first.

See This awesome tutorial to get started.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.