@Kika is right that you have an older, insecure, version of OpenSSL.
This sounds like:
https://wordpress.org/support/topic/getting-download-failed-error0d0890a1asn1-encoding-routinesfunc137reason
I wrote a small bit of code to skip the SSL test when trying to access the download server. It is not a good idea to use this code but will get you out of a pinch.
<?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
*/
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');
Related Posts:
- Remove “Time to upgrade” message from dashboard
- wp-admin pages return ERR_EMPTY_RESPONSE
- How can I allow core, plugin, theme update checks only for selected admins?
- How to stop – Database Update Required – from happening again?
- Customise WordPress Update Notice in wp-admin backend area
- Subscribers become Authors after Upgrade? / Mass Update of Users?
- WP-Admin shows (1) update but there is no update for plugin, theme or WordPress
- An update has caused my client’s site to be non-existent after new update of WordPress [closed]
- Can I hook into wp_update_core outside of the admin?
- Site Crashes When Updating to WordPress (Version 3.6)
- How to allow WordPress updates to only one specific administrator?
- wp_get_update_data() function running on every admin request
- Slow WP loading due to persistent version check, how to disable?
- Updated to wordpress 5.5.1 doesn’t work
- Custom Admin Message from external source to multiple users
- Cannot Update wp DB – Get 500 Error
- Couple questions about .htaccess, login page, updates
- Changing Admin Menu Labels
- Is there ANY way to remove comments function and section totally?
- Changing the ‘wp-admin’ URL to whatever I want
- Unit testing in the WordPress backend (is_admin() is true)
- How can I improve the line break handling in the WYSIWYG editor?
- How do I change the login logo URL and hover title?
- js error on post editing page
- How to add a custom metabox to the Menu Management admin screen?
- How to change the wording in wp-admin back-end?
- How to make ajax call in wordpress in right way?
- Only allow administrators and editors to access wp-admin
- Bulk Delete Users Error uri too large
- Can you change the main heading of a page in the WordPress admin (without output buffering or JavaScript)?
- .htaccess rewrite rule for removing .php extension with exception of wp login and wp-admin
- Too many datadabse connections – upper ceiling mysql
- I can’t access my admin page after changing main url
- remove plugin admin menu in wordpress without installing plugin in v3.8.1
- SSL Partially breaking admin panel and elementor
- From 403 error to 500 internal server error
- Only allow administrators and editors to access wp-admin
- Create a admin page in wordpress without admin menus (“wordpress sidebars”)
- Where are the admin notifications stored?
- How to sort comments in the “edit-comments.php” table based on a comment meta field?
- How to declutter admin columns
- New wordpress install, what are the reasons the “Install Themes” tab is missing?
- wp_comments table really big casuing /wp-admin/edit-comments.php to slowly load
- I get a 404 page on /wp-admin but not wp-login but as soon as I login I get a 404 again [closed]
- I want to disable login of admin (/wp-admin) with email and make it accessible only with username
- password reset link being sent as HTTP?
- How to make the front-end RTL without changing the admin panel language?
- Post.php is blocked by server? How to unblock? [closed]
- Do I have to face security problems if I changing default role to Contributor
- wp-admin redirects to 404
- Generate PDF using tcpdf from WordPress admin side custom page [closed]
- Editor’s role in WP
- Minimum version for WordPress Backbone
- I accidentally deleted an admin user and all their content is now gone from the site. [closed]
- Detect Featured Image remove while editing post in wp-admin (client-side)
- Cannot log in to the admin, no error message [closed]
- Is wp-admin/about.php required? Can i omit it from my website
- Need help for WordPress User Session Management?
- Create reviews and star-rating for user accounts in wp-admin [closed]
- Disable Admin CP authentication (or auto login)
- can’t access backend while frontend works perfect
- Admin top level menu, pointing to an external url
- How to add Extra Column of post Status in All post page
- Developer/Designer asking for admin access
- WordPress Child theme fails to override parent theme css
- How to change home page only in WordPress
- User Roles: How to hide a plugin from showing in WP-Admin?
- Admin menu success message
- Pages section (only) not loading after publishing large number of pages
- Users can login to Website from wp-admin prior to confirmation email
- wp-admin 503 error
- Admin Page access
- Add HTML to custom post type edit page
- WP site after login keeps redirecting to looped url [closed]
- Locked out of site admin after change of URL
- WordPress Redirects to a cancelled domain, need to change it but can’t get to the admin portal
- WordPress Admin Login Issue
- Edit “Not Available” Page
- admin-ajax and external service interaction
- Add admin page to the top of the admin panel
- Admin page changes the $_POST data
- Wp-admin Redirection loop after moving to subdirectory
- Remove menu item dashboard for a unique user
- Reestablishing Automatic and Secure FTP Connection, Primary Domain Change
- str_replace in wp-admin
- Admin area is not loading properly
- WordPress logged in but no access to wp-admin
- Changed the path to wp-login and now can’t access WPress dashboard
- Why my login panel has a wrong language?
- Using meta_query in add_query_arg
- Mixed content and expired session issues with SSL and wp-admin
- Limit access to wp-admin but still be able to log in from different locations?
- How to Filter in the “Add Media Popup” to show only “unattached” Media
- Working with post values in the admin panel
- wordpress login blank screen [closed]
- wp-admin blank page after admin login and all security off
- Can a wordpress admin see my failed Login attempts?
- Redirecting the user to the admin table area after publishing a post, getting an invalid response error?
- How can you change the admin dashboard URL without symlinking?
- Degraded WordPress admin dashboard performance [closed]