简体   繁体   English

在WordPress上安装插件时出现cURL错误35

[英]cURL error 35 while installing plugin on WordPress

I keep getting this error when installing WordPress plugins, what could be wrong? 安装WordPress插件时,我一直收到此错误,这可能是什么问题?

Installation failed: Download failed. 安装失败:下载失败。 cURL error 35: error:0D0C50A1:asn1 encoding routines:ASN1_item_verify:unknown message digest algorithm cURL错误35:错误:0D0C50A1:asn1编码例程:ASN1_item_verify:未知消息摘要算法

Seems your SSL verifier needs to turn off. 似乎您的SSL验证程序需要关闭。 Use the following code. 使用以下代码。

function skip_ssl_verify($ssl_verify) {
    return false;
}
add_filter('https_ssl_verify', 'skip_ssl_verify');
add_filter('https_local_ssl_verify', 'skip_ssl_verify');

Add the code to functions.php file. 将代码添加到functions.php文件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM