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.

I need to upload a file to my FTP server using cURL. let me explain better.

I have this URL http://www.server.com/file.zip and I need to copy the "file.zip" to a FTP server without having to download it to my PC.

I have seen some examples that use cURL to upload files but are they are my hard drive and I need is upload from a URL.

Thank you for your help.

share|improve this question
You need this command. – David Sep 9 '12 at 3:52

2 Answers

up vote 1 down vote accepted

Since you don't know if you're saving it properly, just use the stream.

<?php

// open some file for reading
$file = 'http://server.com/file.zip';
$fp = fopen($file, 'r');

// set up basic connection
$conn_id = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

// try to upload $file
if (ftp_fput($conn_id, $file, $fp, FTP_ASCII)) {
    echo "Successfully uploaded $file\n";
} else {
    echo "There was a problem while uploading $file\n";
}

// close the connection and the file handler
ftp_close($conn_id);
fclose($fp);

?>

By the way, I'm just using PHP Manual examples for these answers. You should, too. Look here.

share|improve this answer
I get this error "There was a problem while uploading Resource id #3" – Heiberto Valdivia Sep 9 '12 at 4:03
You either have an FTP problem, or the file wasn't actually downloaded to the server because of permissions. Used chmod to fix the latter. – David Sep 9 '12 at 4:04
I check the information of the FTP and change the permissions to 777, but I still get the same error. – Heiberto Valdivia Sep 9 '12 at 4:13
Check to see if the file was downloaded, first – David Sep 9 '12 at 4:14
I'm sorry but I do not know how to check if the file was downloaded. thanks for the help, I'll keep trying. – Heiberto Valdivia Sep 9 '12 at 4:28
show 5 more comments

i know its abit late but for anyone who needs this i spent hours looking for something similar
http://bgallz.org/1345/php-upload-multiple-files-url/

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.