Download failed.: error:0D0890A1:asn1 encoding routines:func(137):reason(161)

Create a file
/wp-content/plugins/fixBug.php
FTP it to the server

Contents of the file:

<?php
/*
Plugin Name: Skip SSL Verify
Plugin URI: http://www.damiencarbery.com
Description: Skip SSL verify in curl downloads - fixes: Download failed. error:0D0890A1:asn1 encoding routines:func(137):reason(161).
Author: Damien Carbery
Version: 0.1

$Id: $
*/

function ssv_skip_ssl_verify($ssl_verify) {
return false;
}
add_filter('https_ssl_verify', 'ssv_skip_ssl_verify');
add_filter('https_local_ssl_verify', 'ssv_skip_ssl_verify');
?>

Login as the Word Press administrator
Go to plugins
Activate Skip SSL Verify

You should be able to update Word Press and Plugins now.

  • 224 کاربر این را مفید یافتند
آیا این پاسخ به شما کمک کرد؟

مقالات مربوطه

What is WordPress?

WordPress is an open source Content Management System (CMS) that has risen from a handful of...