I'm using cUrl with Php (latest stable Ubuntu version) to get a remote https page, and curl_exec returns false after reaching timeout. Obviously I'm using theese settings:
curl_setopt($soap_do, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($soap_do, CURLOPT_SSL_VERIFYHOST, 0);
Using wireshark, it seems that the server doesen't answer after "Client Hello". Some strange facts:
Hints? Someone suggests to recompile curl and openssl... I could do it on the development machine, but the production server has the same problem, and for ease of maintainance I'd like to keep only original packets there... Thanks!
Solved with:
curl_setopt($soap_do, CURLOPT_SSLVERSION, 3);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With