Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My client gets a sec_error_unknown_issuer error message when visiting https://mediant.ipmail.nl with firefox. I can't reproduce the error myself. I installed ff on a vista and a xp machine and had no problems. FF on Ubuntu also works fine.

Does anyone get the same error and does anyone have some clues for me so i can tell my isp to change some settings? The certificate is a so called wild-card ssl certificate that works for all subdomains (*.ipmail.nl). Was i wrong to pick the cheapest one?

Regards, Pieter

share|improve this question

7 Answers

Just had the same problem with a Comodo Wildcard SSL cert. After reading the docs the solution is to ensure you include the certificate chain file they send you in your config i.e.

SSLCertificateChainFile /etc/ssl/crt/yourSERVERNAME.ca-bundle

Full details on Comodo site

share|improve this answer
Exactly my problem. Thanks! – Leopd Mar 17 '11 at 1:19
Thank you. For lighttpd use: ssl.engine = "enable" ssl.pemfile = "/etc/ssl/certs/cert.pem" ssl.ca-file = "/etc/ssl/certs/YourSSLCertAuthorityCA.crt" – sstevko Nov 28 '11 at 8:39

We had this problem and it was very much Firefox specific -- could only repro in that browser, Safari, IE8, Chrome, etc were all fine.

Fixing it required getting an updated cert from Comodo and installing it.

No idea what magic they changed, but it was definitely something in the cert that Firefox did NOT like.

share|improve this answer

I'm using nginx and this helped me: http://nginx.org/en/docs/http/configuring_https_servers.html#chains

share|improve this answer

Firefox is more stringent than other browsers and will require proper installation of an intermediate server certificate. This can be supplied by the cert authority the certificate was purchased from. the intermediate cert is typically installed in the same location as the server cert and requires the proper entry in the httpd.conf file.

while many are chastising Firefox for it's (generally) exclusive 'flagging' of this, it's actually demonstrating a higher level of security standards.

share|improve this answer
-1 This is absolutely not the case. Please read Mozilla's own description: wiki.mozilla.org/Incomplete_Certificate_Chain. The missing certificate sometimes works (as experienced by the OP) because they cache intermediate CAs that they find in the wild. So my site will work in Chrome with a missing intermediate certificate if the user has already visited another site that uses that presents the same certificate. – mehaase May 9 at 23:38

Which version of Firefox on which platform is your client using?

The are people having the same problem as documented here in the Support Forum for Firefox. I hope you can find a solution there. Good luck!

Update:

Let your client check the settings in Firefox: On "Advanced" - "Encryption" there is a button "View Certificates". Look for "Comodo CA Limited" in the list. I saw that Comodo is the issuer of the certificate of that domain name/server. On two of my machines (FF 3.0.3 on Vista and Mac) the entry is in the list (by default/Mozilla).

alt text

share|improve this answer
Most recent 3.03 on windows xp. – Overbeeke Nov 9 '08 at 12:49
What do you mean inserted in the list? Does that mean that it is default in that list as provide by mozilla or did you accept a certificate of Comodo sometime and was it added to the list then? – Overbeeke Nov 9 '08 at 14:47
I mean default by Mozilla – splattne Nov 9 '08 at 14:50

I had this problem with Firefox and my server. I contacted GoDaddy customer support, and they had me install the intermediate server certificate:

http://help.godaddy.com/article/5346

After a re-start of the World Wide Web Publishing Service, everything worked perfectly.

If you do not have full access to your server, your ISP will have to do this for you.

share|improve this answer
I had the same problem with a GoDaddy SSL certificate installed on a IIS6 server. This procedure worked for me. – Costo Jan 31 '11 at 16:06

As @user126810 said, the problem can be fixed with a proper SSLCertificateChainFile directive in the config file.

But after fixing the config and restarting the webserver, I also had to restart Firefox. Without that, Firefox continued to complain about bad certificate (looks like it used a cached one).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.