I installed the last Magento version 1.9.2.3 and i tried to install a extension via Magento Connect in admin painel and i got the error:
Unknown cipher in list: TLSv1
I tried this solution:
In file downloader/lib/Mage/HTTP/Client/Curl.php find the code
$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');
and then change to
if(isset($var)){$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');}
I didn't find the code above in file curl.php but i can find that code in Magento v1.9.2.2 in curl.php.
How can i solve this? Thanks.
$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1');
to this:
$this->curlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
and now it's working as well. Actually, my Magento store 1.9.2.3 is running with this settings:
CentOS 6.7 Curl 7.12.1 PHP 5.2.17
Thanks for the help
– Michel Jan 27 '16 at 14:04