0

I'm trying to All4coding Offline Maintenance Page using Magento Connect Manager ver. 1.9.2.4 and I'm getting this error: Unknown cipher in list: TLSv1

I found some solutions on here already, however it looks like either my Magento is broken, or they removed the line of code that everyone is talking about..

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

I'm using Hostgator Shared hosting to host the website, if that makes a difference. Does anyone have a solution for this, or what should I try to do?

Brandy
  • 214
  • 1
  • 3
  • 10

1 Answers1

0

Go to downloader/lib/Mage/HTTP/Client/Curl.php and change:

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

to:

$this->curlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
scrowler
  • 2,014
  • 1
  • 18
  • 42
MartyS
  • 934
  • 1
  • 7
  • 9