douwen1213 2012-06-26 20:23
浏览 309
已采纳

PHP / cURL错误7; 无法连接到主机

So I keep running into the same error... I've searched for hours to try to find a resolution, but I just can't seem to find the missing piece. Lots of other people asking about error 7 on stack overflow, but none that were similar to my scenario.

Basically, I'm using cURL to download images being sent through an XML feed. My entire script works, everything runs, the function I've written below even downloads thousands of images (upwards to the 3000 range sometimes).

I guess my question is, why, after downloading 3000 images would it just not connect?

function downloadImage($location, $imagesPath, $imageName) {

    //Location fix
    $location = str_replace(" ", "%20", $location);

    $url  = $location;
    $path = $imagesPath . $imageName;
    $fp = fopen($path, 'w');    

    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_FILE, $fp);
    curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); //Wait indefinitately      
    curl_setopt($ch, CURLOPT_DNS_USE_GLOBAL_CACHE, false);

    $data = curl_exec($ch); 
    if ($data === false) {
      echo "DownloadImage cURL failed 1: (" . curl_errno($ch) . ") " . curl_error($ch) . "<br/>";
      //exit;
    }           
    curl_close($ch);


    fclose($fp);        

}
  • 写回答

1条回答 默认 最新

  • dputlf5431 2012-07-31 17:15
    关注

    So in order to get this to work, I had to put a bottleneck on the function to slow it down a bit. As Andrewsi suggested, the remote site was cutting me off for downloading images too quickly. In order to bottleneck the function, I FTP'd each image to a remote server (since this was required anyway).

    Final function looks like this:

    function downloadImage($location, $imagesPath, $imageName, $ch3, $feedFTPinfo) {
    
    //Location fix
    //$location = str_replace(" ", "%20", $location);   
    
    $url  = $location;
    $path = $imagesPath . $imageName;
    
    $fp = fopen($path, 'w');    
    $ch2 = curl_init(); // Initiate cURL for downloading images
    
    //Setup the cURL options for the second handle ($ch2)
    curl_setopt($ch2, CURLOPT_URL, $url);
    curl_setopt($ch2, CURLOPT_FILE, $fp);   
    curl_setopt($ch2, CURLOPT_CONNECTTIMEOUT, 0); //Wait indefinitately     
    curl_setopt($ch2, CURLOPT_FOLLOWLOCATION, true);
    
    //Execute the cURL session
    $data2 = curl_exec($ch2); 
    
    //Resize Images
    $image = new SimpleImage();
    $image->load($url); 
    $imageNameSm = str_replace(".jpg", "", $imageName);
    $imageNameSm = $imageNameSm."_sm2.jpg"; 
    $image->resizeToWidth(120);
    $image->save($imagesPath . $imageNameSm);   
    $smPath = $imagesPath . $imageNameSm;
    
    //Find out if there were any issues
    if ($data2 === false) {
      echo "DownloadImage cURL failed 1: (" . curl_errno($ch2) . ") " . curl_error($ch2) . "<br/>";
      //exit;
    } else {
        //There weren't any issues downloading the file, move it to the speficifed ftp server
    
        if (!empty($feedFTPinfo)) {
    
            $localfile = $path;
            $fp = fopen($localfile, 'r');
    
            //Setup the options for the 3rd handle
            curl_setopt($ch3, CURLOPT_URL, $feedFTPinfo.$imageName);
            curl_setopt($ch3, CURLOPT_CONNECTTIMEOUT, 0); //Wait indefinitately 
            curl_setopt($ch3, CURLOPT_UPLOAD, 1);
            curl_setopt($ch3, CURLOPT_INFILE, $fp);
            curl_setopt($ch3, CURLOPT_INFILESIZE, filesize($localfile));
    
            //Execute the 3rd cURL handle
            $data3 = curl_exec($ch3);
    
            //Find out if there were any issues with the execution
            if ($data3 === false) {
                echo "Uploading the image via FTP failed: (" . curl_errno($ch3) . ") " . curl_error($ch3) . "<br/>";
                //exit;
            }
    
            $localfile = $smPath;
            $fp = fopen($localfile, 'r');
    
            //Setup the options for the 3rd handle
            curl_setopt($ch3, CURLOPT_URL, $feedFTPinfo.$imageNameSm);
            curl_setopt($ch3, CURLOPT_CONNECTTIMEOUT, 0); //Wait indefinitately 
            curl_setopt($ch3, CURLOPT_UPLOAD, 1);
            curl_setopt($ch3, CURLOPT_INFILE, $fp);
            curl_setopt($ch3, CURLOPT_INFILESIZE, filesize($localfile));
    
            //Execute the 3rd cURL handle
            $data3 = curl_exec($ch3);
    
            //Find out if there were any issues with the execution
            if ($data3 === false) {
                echo "Uploading the small image via FTP failed: (" . curl_errno($ch3) . ") " . curl_error($ch3) . "<br/>";
                //exit;
            }           
    
    
    
    
        }
    
    
    }
    
    curl_close($ch2); //Close the cURL handle that downloads images
    fclose($fp);
    }
    

    If you don't need to ftp somewhere to create the bottleneck, you could use php's sleep (seconds) or usleep (microseconds) functions within your downloadImage function to create a similar bottleneck.

    Hope this theory helps someone else out.

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

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog