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.
I actually misspoke – we do indeed still have the above issue. I’m still investigating but could use some guidance on this.
This issue can actually be closed – we’ve resolved this on our end. Was due to a proxy.