Reputation: 151
I am facing issues with chrome browser (NET::ERR_CERT_REVOKED ). I use GoDaddy SSL certificate. It works fine with the Firefox browser. couple of my colleagues are able to access the URL fine. Please help me in finding the root cause of it. I tried some many ways to resolve it but couldn't find the solution. Error while accessing web page
Upvotes: 4
Views: 8292
Reputation: 301
Type thisisunsafe while on the page (not in the address bar) and this will whitelist the page.
Just for context, I'm using this workaround for cluster nodes that I know to be legitimate self-signed certs. There is a reason why Chrome rejects such certificate errors.
Upvotes: 9
Reputation: 1
I also made lots of research but here is the solution:
start - run - cmd
type:
certutil –urlcache * delete
all done.
Upvotes: 0
Reputation: 1207
I had the same issue a few days ago (I am also using GoDaddy). Some browsers display this warning and some don't because the way they check certificate revocation is different (CRL or OCSP).
Long story short, a temporary fix is that disabling certificate revocation. It fixes the issue for THAT client only. Other clients continue to have this warning.
To disable certificate revocation check in Internet Explorer:
(Source)
The permanent fix is solving the certificate issue in your server or hosting provider. In my case, I forgot to install the certificate for each of my sites hosted in GoDaddy. I thought UCC certificates are automatically installed but appearantly, they don't. Follow these instructions to install UCC certificate to your GoDaddy websites.
Upvotes: 0