php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30613 proxy problem in Curl library
Submitted: 2004-10-29 17:15 UTC Modified: 2004-11-01 05:56 UTC
From: sergey_s_m at mail dot ru Assigned:
Status: Closed Package: cURL related
PHP Version: 5.0.1 OS: Suse9.0
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
39 + 27 = ?
Subscribe to this entry?

 
 [2004-10-29 17:15 UTC] sergey_s_m at mail dot ru
Description:
------------
Infinite looping when I tried to get page through proxy  
using curl library and option "CURLOPT_FOLLOWLOCATION".  
Without this option all works OK. This bug I saw under 
curl-7.10.5, curl-7.11.2 curl-7.12.2 
  

Reproduce code:
---------------
            $proxy="64.56.118.178:1080";
            $addr = "http://www.yandex.ru/";
            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $addr);
            curl_setopt($ch, CURLOPT_PROXY, $proxy);
            curl_setopt($ch, CURLOPT_HEADER, 1);
            curl_setopt($ch, CURLOPT_HTTPGET,1);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
            curl_setopt($ch, CURLOPT_HEADER, FALSE); 
	curl_setopt($ch, CURLOPT_VERBOSE, TRUE);
            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
            curl_setopt($ch, CURLOPT_TIMEOUT, 3);
           $parse = curl_exec($ch);
		print("OK");
		

Expected result:
----------------
I've expected printing "OK" 

Actual result:
--------------
firstly I sow nothing. 
when I became use curl_setopt($ch, CURLOPT_VERBOSE, TRUE) 
I sow lopping next: 
64.56.118.178:1080 
* About to connect() to 64.56.118.178 port 1080 
*   Trying 64.56.118.178... * connected 
* Connected to 64.56.118.178 (64.56.118.178) port 1080 
> GET http://www.yandex.ru/ HTTP/1.1 
Host: www.yandex.ru 
Pragma: no-cache 
Accept: */* 
 
< HTTP/1.0 302 Found 
< Connection: Close 
< Location: http://no-full-proxy-allowed/ 
* Closing connection #0 
* Issue another request to this URL: 'http://
no-full-proxy-allowed/' 
* About to connect() to 64.56.118.178 port 1080 
*   Trying 64.56.118.178... * connected 
* Connected to 64.56.118.178 (64.56.118.178) port 1080 
> GET http://no-full-proxy-allowed/ HTTP/1.1 
Host: no-full-proxy-allowed 
Pragma: no-cache 
Accept: */* 
Notice: when I use $addr = "http://www.yandex.ru"; instead 
$addr = "http://www.yandex.ru/"; All works OK! 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-11-01 05:56 UTC] iliaa@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 02:01:29 2024 UTC