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.

New to cURL and am having trouble getting a file to upload to a remote server. I have a .html files that has a file upload input. It then goes to a .php with the cURL code on it, and then to the server.

The HTML looks like this:

<form action="send.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" /> 
<br />
<input type="submit" name="submit" value="Submit" />
</form>

the cURL page looks like this:

<?php
$curlPost = array('fileupload' => '@'.$_FILES['theFile'] ['tmp_name']);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://24.18.65.72:8008/upload_file.php');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data = curl_exec();
curl_close($ch);
?>

and the receiving .php on the remote server looks like this:

<?php
$folder = "files/";
$path = $folder . basename( $_FILES['file']['name']); 
if(move_uploaded_file($_FILES['file']['tmp_name'], $path)) {
    echo "The file ".  basename( $_FILES['file']['name']). " has been uploaded";
} else{
    echo "There was an error uploading the file, please try again!";
}
?>

Is this even close to working?

share|improve this question
Do you get some kind of feedback? Output, or perhaps an error message? – Tieme Sep 3 '12 at 7:58
1  
Why are you using cURL? You can submit your HTML form directly to the PHP page that handles the upload. – Nilpo Sep 3 '12 at 7:59
Tierre, when I hit submit it goes to the .php with cURL on it and just sits there blank. On the server side I'm not sure where to check for errors. – Milksnake12 Sep 3 '12 at 8:02
Nilpo, I've tried that exact same code but skipping the curl and adding the remote server destination to the action in the form. I always get the "else" error message in the if statement. Your not the first person to suggest that, do you see anything that might be wrong or preventing this? – Milksnake12 Sep 3 '12 at 8:04
did you check if the $folder = "files/"; is writable? – Ivan HuĆĄnjak Sep 3 '12 at 8:24
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.