Home » HTTP » HTTP_Client » Bug #8831
Problem with SSL
Details
| Submitted | 2006-10-02 16:20 UTC |
|---|---|
| From | xworkfiles at gmail dot com |
| Status | Bogus |
| Package | HTTP_Client |
| PHP Version | 4.4.2 |
| OS | Linux (ASP10) |
| Roadmaps | (Not assigned) |
Comments
[2006-10-02 16:20 UTC] xworkfiles at gmail dot com
Description:
------------
Problem with ssl support.
Return null.
Test script:
---------------
require_once 'HTTP/Client.php';
$http =& new HTTP_Client();
$http->setMaxRedirects(10);
$http->get("https://my.screenname.aol.com/_cqr/login/login.psp");
dump($http->currentResponse());
Expected result:
----------------
html page
Actual result:
--------------
NULL
[2006-10-09 08:50 UTC] xworkfiles at gmail dot com
if i use
PEAR::setErrorHandling(PEAR_ERROR_PRINT);
Script retun:
Malformed response.
In previous version i use
if (PEAR::isError($ret))
{
die($ret->getMessage());
}
-------------------------------------
I create script using libcurl.