Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Insecure response error with HTTPS on remote computer

I have following problem with HTTPS. My client navigated to checkout page and he did not see any content. Checkout site is rendered on HTTP protocol but most of content is loaded dynamically through SSL (for example js files used to render cart content). And this content was unable to load because of net::ERR_INSECURE_RESPONSE.

Below you have screenshot of console (Chrome). As you can see every secured request failed (even one from AmazonWS) so I assume that problem isn't related to server/scripts but rather browser or internet configuration. Also when client tried to access page via private browsing he suddenly succeded. Does anyone have idea what could be wrong? Just to add, certificate is still valid (to 2016.01.16).

like image 390
G.Urzeda Avatar asked Nov 09 '15 13:11

G.Urzeda


2 Answers

Load the script directly in your browser. Look at the detailed security information it gives.

screenshot

They certificate is using an obsolete encryption method.

like image 180
Quentin Avatar answered Oct 26 '22 17:10

Quentin


I had the same issue when Fiddler was running on the background. Try closing Fiddler.

[Edit]

I had set the option to decrypt HTTPS sessions by re-signing traffic using self-generated certificates in Fiddler.

If your client wasn't using Fiddler at the time, could it be that traffic goes through a proxy where another certificate is used in the middle?

like image 30
Miltos Avatar answered Oct 26 '22 16:10

Miltos