ID:               29958
 Updated by:       [EMAIL PROTECTED]
 Reported By:      ryan dot hansen at usa dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         cURL related
 Operating System: Debian
 PHP Version:      4.3.8
 New Comment:

Good point Daniel, marking this as bogus. Upgrade first!


Previous Comments:
------------------------------------------------------------------------

[2004-09-03 14:38:42] daniel at haxx dot se

curl 7.9.5 was released some 30 months ago. Do I need to say more?

------------------------------------------------------------------------

[2004-09-02 21:28:29] ryan dot hansen at usa dot net

I should mention that this same code DOES work on a different
requesting server (FreeBSD 4.4; PHP 4.2.3)

------------------------------------------------------------------------

[2004-09-02 21:21:42] ryan dot hansen at usa dot net

Description:
------------
When attempting to connect to an IP address (not a domain) over SSL
using cURL (7.9.5), there is no response, no errors, etc.  I get
nothing.  When I test the same script with a domain (a different
server), I get a response as expected.  When I test it with the correct
IP address over HTTP (non-secure), I also get a response as expected.

The problem, however, is that the server that I have to connect to for
the app I'm building does not have a domain, only an IP address and it
must be a secure connection.  

I admit that I could be missing something, but I can't figure out what
it is and I've tested it pretty thoroughly under multiple scenarios.

Reproduce code:
---------------
$postdata = "POST DATA TO POST TO SERVER";

// use appropriate IP, of course
$ch = curl_init("https://xxx.xxx.xxx.xxx";); 
curl_setopt($ch, CURL_POST, 1);
curl_setopt($ch, CURL_POSTFIELDS, $postdata);
curl_setopt($ch, CURL_ERROR, 1);
curl_setopt($ch, CURL_RETURNTRANSFER, 1);
$retval = curl_exec($ch);
curl_close($ch);

// print result for testing
echo $retval;
exit;


Expected result:
----------------
The echo statement should print the web page data from the IP to the
screen, and it does when I test with non-secure IP or domain.

Actual result:
--------------
Nothing. The echo statement doesn't seem to print anything.  No cURL
errors, no results, no PHP warnings or errors.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=29958&edit=1

Reply via email to