cancel
Showing results for 
Search instead for 
Did you mean: 

SSL connect error

SSL connect error

Hi everybody!

 

I've spent hours trying to update my Magento version.

With both Magento Connect and SSH, I get the same error.

'SSL connect error'.

 

I already changed my Curl.php to the following:

$this->curlOption(CURLOPT_SSLVERSION, 6);

 

Does anybody have a suggestion?

3 REPLIES 3

Re: SSL connect error

Bumping this topic.

 

If somebody else know anybody I can contact, please tell me, thank you.

Re: SSL connect error

Here are couple of options you can try (Please revert the previous changes):

 

Option #1:

 

After:
$this->curlOption(CURLOPT_SSL_VERIFYHOST, 2);
Add:
$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');

 

Option #2:

Comment  below line (already commented below):

/* $this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); */

Add:
$this->curlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);

 

Option #3:

 

Replace below line:

$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');

To:
if(isset($var))

{
   $this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');
}

 

Problem Solved? Please give Kudos and Accept as Solution.

- Tarandeep
Problem solved?Please give 'Kudos' and accept 'Answer as Solution'.

Re: SSL connect error

Magento Connect Manager ver. 1.9.3.2

same problem

I do not have these lines

 

tried instead

$this->curlOption(CURLOPT_SSLVERSION, 1);

wrote

$this->curlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);

 

did not help