• Resolved charveyunm

    (@charveyunm)


    Hi,
    We recently purchased the multi license version of the plugin.
    When trying to register we get:
    cURL error 60: Peer’s certificate issuer has been marked as not trusted by the user.

    Any help with resolving this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter charveyunm

    (@charveyunm)

    This issue can actually be closed – we’ve resolved this on our end. Was due to a proxy.

    Thread Starter charveyunm

    (@charveyunm)

    I actually misspoke – we do indeed still have the above issue. I’m still investigating but could use some guidance on this.

    Thread Starter charveyunm

    (@charveyunm)

    I figured out our issue was related to our server certificate

    adding this code allowed us to license the software properly:

    add_action('http_api_curl', function( $handle ){
        //Don't verify SSL certs
        curl_setopt($handle, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($handle, CURLOPT_SSL_VERIFYHOST, false);
    
     }, 10);

    the license agent seems to already set sslverify host to false but the verifypeer was also needed.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Error when activating License’ is closed to new replies.