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.

Here's the code I'm trying:

        $ftp_user_name='user'; 
        $ftp_user_pass='pass'; 
        $ftp_server='ip.addr.ess';
        $ftp_dir='/site.com/public_html/upload/'; //www.site.com/upload/
        $upload_file='some.txt';

        $destination_file=$ftp_dir.$upload_file; 

        $conn_id = ftp_connect($ftp_server); 
        $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); 

        $upload = ftp_put($conn_id, $destination_file, $upload_file, FTP_BINARY); 

Nothing gets uploaded, but the file exists on my server.

What am I missing?

share|improve this question
1  
How should we know? Show us the errors you're getting! Fire up a packet sniffer and do some basic debugging first. Try Wireshark. – Brad May 17 '12 at 2:26
I don't get any errors... I'm checking that the file exists on my server but don't know what kind of commands I can send over to the remote server to get back any errors – WhoIsMaryLou May 17 '12 at 2:32
What does your packet trace say? – Brad May 17 '12 at 2:49
@Brad, surely you don't think someone having such a basic problem can easily use a packet sniffer? – chris May 17 '12 at 2:58
1  
is this a place to get answers or to debate how skilled i might be – WhoIsMaryLou May 17 '12 at 3:53
show 2 more comments

1 Answer

Does your FTP user have write permission on the destination server?

share|improve this answer
1  
looks good as a comment not as answer – Sudhir May 17 '12 at 4:22

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.