dongluyi5123 2013-09-04 00:10
浏览 93
已采纳

使用curl将文件从一个服务器传递到另一个服务器

I have a web server that receives a posted data form, one part of which can be an attached image. I want to use curl to send that information along to a second server. Everything works fine for requests that do not include an image, but when an image is included in the original post I get:

curl error 26: failed creating formpost data

I know this indicates that curl is unable to find the file, but I am having trouble determining exactly why not. Here is the code

if ($_POST) {
  $postData = array();    
  //copy in the post fields that were posted here    
  foreach ($_POST as $key => $value) {
    $postData[$key] = $value;  
  }
  //copy in the files that have been included
  foreach ($_FILES as $key => $value) {
    if ($value["tmp_name"]) { //if null, no file was uploaded              
      $fn = "existing_image.jpg";//(use existing for debugging only
                                 //in reality, would use the tmp image)           
      $postData[$key] = "@" . realpath($fn) . ";type=" . $value["type"];

      $testMsg .= "added file $key value of '" . $postData[$key] .
          "'(" . file_exists($fn) . ")
";
    }
  }

  $testMsg .= "POSTDATA:
" . print_r($postData, true);

  $options[CURLOPT_POST] = true;        
  $options[CURLOPT_POSTFIELDS] = $postData;  
}

And here is the output:

added file photo value of '@/var/www/wordpress/somedirectory/php/existing_image.jpg;type=image/jpeg'(1)
POSTDATA:
Array
(
    [key1] => 4
    [key2] => blah blah some text
    [key3] => etc
    [keyimage] => @/var/www/wordpress/somedirectory/php/existing_image.jpg;type=image/jpeg
)

The file indeed exists - why is curl giving me the error? I appreciate any help you can give...

Edit: I do not have this same problem when servers 1 and 2 are the same server (i.e. when I set up a web page on the second server that receives the posted data and then executes the same curl code to send the info along to itself). That probably means something, but I am evidently overlooking something...

  • 写回答

1条回答 默认 最新

  • 普通网友 2013-09-04 14:39
    关注

    I'm not sure but perhaps you php or curl version doesn't support setting the content type this way. Try to remove the type= part from your code and let curl decide the content type:

    $postData[$key] = "@" . realpath($fn);
    

    You could also try setting the CURLOPT_VERBOSE flag to true and see if you get a more descriptive error message.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据