Magento – SSL Connect Error on Magento Connect after upgrading to 1.9.2.4

ce-1.9.2.4downloadermagento-connectmagento-connect-managerssl

I'm having problems with Magento Connect again. I'm using Magento 1.9.2.4.

Last year, when using Magento 1.9.2.2, I previously had the "Unknown cipher in list: TLSv1" error when using Magento Connect to install extensions.
I used this solution to solve it:

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

However, I have since upgraded to 1.9.2.4 (directly from 1.9.2.2), and now I get the error message "SSL connect error" when trying to install any extensions via Magento Connect.

Does anyone have a solution to this problem?

Best Answer

Change this:

$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); To this:
$this->curlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);

in downloader/lib/Mage/HTTP/Client/Curl.php

Related Topic