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 am using PHP (WAMPServer) to receive a form submission, and then CURL to pass the file to another server for processing.

Here is an example to illustrate (not the actual code):

$data = array(
  'file' => '@'.$_FILES['key']['tmp_name']
);

Here's what I'm using for CURL... and as I was pasting the code I noticed that I still have http_build_query() in my code... so, that must be the problem.

$CURL = curl_init();
curl_setopt($CURL, CURLOPT_URL, $operation['callback']);
$query_string = http_build_query($arguments);
curl_setopt($CURL, CURLOPT_POSTFIELDS, $query_string);
curl_setopt($CURL, CURLOPT_POST, TRUE);
curl_setopt($CURL, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($CURL);
curl_close($CURL);
return $result;

My problem is that the last server isn't receiving the file. Instead, the data is passed as a key-value pair.

$_POST contains 'file' => '@c:\wamp\tmp\xyz.tmp'

What I would prefer, is that the files was transferred, and $_FILES has information about it.

share|improve this question
Try sending 'name' => 'xyz' value also. Can you put actual code ? – safarov Apr 11 '12 at 15:25
1  
We need to see the rest of the curl code. – webbiedave Apr 11 '12 at 15:26

2 Answers

up vote 1 down vote accepted

Don't build an http query for the CURLOPT_POSTFIELDS. Curl can directly accept an array of fields and do its own encoding/mangling.

By building your own query, you're 'hiding' the @ that indicates a file upload and CURL will not trigger its upload mechanisms.

In other words, this will fix things:

$data = array(
  'file' => '@'.$_FILES['key']['tmp_name']
);
curl_setopt($CURL, CURLOPT_POSTFIELDS, $data);
share|improve this answer

if you add your CURL method code, we could better answer you...

Try to transfer the file as binary, and add the filesize in the header in your curl.

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.