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

使用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.

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

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)