Menu Close

Download failed. SSL certificate problem, verify that the CA cert is OK.

  • Creator
    Topic
  • #247
    powerhosterforumsEric Smith
    Keymaster
      Up
      0
      Down
      ::

      Download failed. SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

      When I update my WordPress, I get above message. How to fix it ?

      • This topic was modified 7 years, 2 months ago by powerhosterforumsEric Smith.
      • This topic was modified 7 years, 2 months ago by powerhosterforumsEric Smith.
    Viewing 1 replies (of 1 total)
    • Author
      Replies
    • #251
      powerhosterforumsEric Smith
      Keymaster
        Up
        0
        Down
        ::

        It normally happened in old WordPress Version.

        https://wordpress.org/support/topic/cant-upgrade-website-ssl-certificate-problem/ gives a good solution to solve this problem.

        But you can also fis it by adding some code in your functions.php in your theme folder. Adding some code in the end of functions.php file:

        add_action('http_request_args', 'jkudish_http_request_args', 10, 2);
        function jkudish_http_request_args($args, $url) {
        $args['sslverify'] = false;
        return $args;
        }

        All will be OK now.

      Viewing 1 replies (of 1 total)
      • You must be logged in to reply to this topic.