[Solved] Fatal error: Uncaught exception ‘GuzzleHttp\Exception\ConnectException – CURLE_SSL_CONNECT_ERROR 35

Error:-
Fatal error: Uncaught exception ‘GuzzleHttp\Exception\ConnectException’ with message ‘cURL error 35: SSL connect error (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)’

Means:-

CURLE_SSL_CONNECT_ERROR (35)

A problem occurred somewhere in the SSL/TLS handshake. You really want the error buffer and read the message there as it pinpoints the problem slightly more. Could be certificates (file formats, paths, permissions), passwords, and others.

Solutions:-

1. Check if your site supports SSLV2, if not enable it

[email protected]:~$ curl --sslv2 https://the-d2.com
curl: (35) GnuTLS does not support SSLv2

 

2. Check if your site’s SSL chain is complete and it have 4 certs in chain

https://www.sslshopper.com/ssl-checker.html#hostname=the-d2.com

Leave a Reply