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

 ID:                 52106
 Comment by:         website-php at interfasys dot ch
 Reported by:        sc0ttbeardsley at gmail dot com
 Summary:            fopen fails on some SSL urls
 Status:             Open
 Type:               Bug
 Package:            OpenSSL related
 Operating System:   Ubuntu Lucid/Maverick
 PHP Version:        5.3.2
 Block user comment: N

 New Comment:

Same problem on FreeBSD 8.1 with PHP 5.2.14 and OpenSSL 1.0.

Impossible to connect to a website using SSL.

Immediate Timeout, error 0.

Tried both fopen and fsockopen.


Previous Comments:
------------------------------------------------------------------------
[2010-10-13 18:41:27] jeremy dot postlethwaite at gmail dot com

I am also having trouble with stream_socket_client and
Zend_Auth_Adapter_Cas



http://framework.zend.com/wiki/display/ZFPROP/Zend_Auth_Adapter_Cas+-+Jeremy+Postlethwaite



I am using CentOS 5.5, zend-server-ce-php-5.3 and PHP 5.3.3.



Here is my error:



Unable to Connect to ssl://cas.ucdavis.edu:443. Error #0: 



The problem did not arise until I upgraded to PHP 5.3.3

------------------------------------------------------------------------
[2010-10-04 13:57:50] shinoj at hotmail dot com

Hi,



I could not reproduce this bug on RHEL5 64 bit (kernel 2.6.18-164.el5)
with php-5.1.6-23.2.el5_3 which is the redhat default



and centos5 64 bit (kernel 2.6.18-194.3.1.el5) with php-5.3.2-2



Regards,

Shinoj.

------------------------------------------------------------------------
[2010-09-28 10:40:39] ns at centralservices dot nl

A note on my previous post. Downgrading to PHP 5.2.10 within Ubuntu
10.04.1 LTS does resolve the problem. So the bug clearly resides in the
PHP codebase.

------------------------------------------------------------------------
[2010-09-20 16:39:02] ns at centralservices dot nl

I'm having a similar problem.



The URL I'm trying to open:
https://login.twinfield.com/webservices/session.asmx?wsdl



Environment in which it's working perfectly: Ubuntu 9.10 (php 5.2.10).



Environment in which it's not working: Ubuntu 10.04.1 (php 5.3.2).

The specific errors I get when trying to connect to the url:



PHP Warning:  fopen(): SSL operation failed with code 1. OpenSSL Error
messages:

error:14092073:SSL routines:func(146):reason(115) in
/share/ac/staging/test_twf_ubuntu10lts.php on line 26

PHP Warning:  fopen(): Failed to enable crypto in
/share/ac/staging/test_twf_ubuntu10lts.php on line 26

PHP Warning: 
fopen(https://login.twinfield.com/webservices/session.asmx?wsdl): failed
to open stream: operation failed in
/share/ac/staging/test_twf_ubuntu10lts.php on line 26



This means that I cannot connect to a very important SSL webservice
through SoapClient so I cannot upgrade to Ubuntu 10 lts, which I really
need to because of another, new, crucial package our project will depend
on.



I guess that the failing SOAP call is related to the above, but just to
be sure, I'm getting the following error when trying to create a
SoapClient with the above WSDL url (note that a commandline wget of the
url works just fine):



PHP Fatal error:  SOAP-ERROR: Parsing WSDL: Couldn't load from
'https://login.twinfield.com/webservices/session.asmx?wsdl' : failed to
load external entity
"https://login.twinfield.com/webservices/session.asmx?wsdl";

 in /share/staging/test_twf_ubuntu10lts.php on line 30

SOAP-ERROR: Parsing WSDL: Couldn't load from
'https://login.twinfield.com/webservices/session.asmx?wsdl' : failed to
load external entity
"https://login.twinfield.com/webservices/session.asmx?wsdl";

------------------------------------------------------------------------
[2010-09-15 17:07:57] personseb at yahoo dot fr

maybe a hint to troubleshoot the problem if I use the following it works
:





$t_context = array(

        'ciphers' => 'ALL:!AES:!3DES:!RC4:@STRENGTH', // OK:LOW

);

$context = stream_context_create(

        array(

                'ssl' => $t_context,

));



file_get_contents('https://myserver:443', false, $context);



without the above context it breaks :



file_get_contents('https://myserver:443', false, $context);

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


The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

    http://bugs.php.net/bug.php?id=52106


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

Reply via email to