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.
0 comments:
Post a Comment