• Resolved aculine

    (@aculine)


    Hi, I’ve resolved problem the generate this error:

    Fatal error: Uncaught CurlException: 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed thrown in /htdocs/public/www/wp-content/plugins/seo-facebook-comments/facebook/base_facebook.php on line 825

    adding, on line 137, this:
    `CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_SSL_VERIFYHOST => 2,’

    so, the public static $CURL_OPTS will be:

    public static $CURL_OPTS = array(
    CURLOPT_CONNECTTIMEOUT => 10,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_TIMEOUT => 60,
    CURLOPT_USERAGENT => ‘facebook-php-3.1’,
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_SSL_VERIFYHOST => 2,
    );

    And this works great.
    Found this solution here

    https://www.ads-software.com/extend/plugins/seo-facebook-comments/

  • The topic ‘[resolved] Fatal error: Uncaught CurlException: 60’ is closed to new replies.