Thursday, January 28, 2016

Magento Connect installation problem 1.9.2

Magento Connect installation problem 1.9.2

Unknown cipher in list: TLSv1

Solution:

In file downloader/lib/Mage/HTTP/Client/Curl.php I changed the code
$this->curlOption(CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); 
to
if(isset($var)){

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

}
and problem will be solved for now.