-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
versionOfTLS() depends on www.howsmyssl.com, which didn't renew its own SSL cert! #13
Comments
Fixing it now. Will make a quick release. |
Looks like howsmyssl has just now updated their site with a free Let's Encrypt cert. Still, maybe not such a great design to depend upon this free site? |
Definitely not. It was there when we just started disabling tls 1.1 and developers are not understanding which tls version they are using. It is no longer necessary. |
You might also consider updating cacert.pem. It appears to be 2 years old. |
I disable the SSL checkings as well. Right now, it will not "verify" the certificate to see if it is signed by a valid authority. For maintenance purposes, "accept all certificate" is the default option. |
In case somebody needs the validation, updated the cacert.pem as well. |
Today our site stopped processing credit card authorizations. I tracked the problem down to versionOfTLS() in BaseCurl.php. It makes a connection to https://www.howsmyssl.com/a/check
https://github.com/intuit/PHP-Payments-SDK/blob/master/src/HttpClients/core/BaseCurl.php#L151
Today howsmyssl.com's own SSL certificate expired, causing versionOfTLS() to fail, in turn causing setSSLConfig() to throw a PHP exception which prevents any Quickbooks Payments communication!
The text was updated successfully, but these errors were encountered: