Chrome : ERR_INSECURE_RESPONSE and allow Chrome browser to load insecure content
There are times when you try to access some web pages such as pages with SSL/https/secured/encrypted pages but with some insecure content in-between. This will cause some part of the page to appear broken because Google Chrome refused to load the insecure content.
Hitting the keyboard shortcut Command
+ Option + J
for Mac or Control
+ Shift
+ J
for Windows/Linux will bring up the Javascript Console and you see these type of messages :
Failed to load resource : net ::ERR_INSECURE_RESPONSE
To allow Chrome to load the insecure content, you can create a short-cut for launching Chrome browser, but with additional parameter :
--allow-running-insecure-content
For example :
"C:\Program Files\Google\Chrome\Application\chrome.exe" --allow-running-insecure-content
It would be great idea to mark the short-cut with the word "Insecure Content Allowed" so that you will know that launching this instance of Chome that allowed insecure content to be loaded. For normal Internet browsing, it will be advisable to disable insecure content loading, which is the default setting.
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.4k Golang : Find file size(disk usage) with filepath.Walk
+17.8k Golang : [json: cannot unmarshal object into Go value of type]
+27.8k Golang : dial tcp: too many colons in address
+6.5k Golang : Break string into a slice of characters example
+6.3k Golang : Get Hokkien(福建话)/Min-nan(閩南語) Pronounciations
+8.5k Golang : Convert word to its plural form example
+10.3k Golang : Find and replace data in all files recursively
+17.8k Golang : delete and modify XML file content
+11k Golang : Removes punctuation or defined delimiter from the user's input
+13.7k Golang : reCAPTCHA example
+6.2k PHP : How to check if an array is empty ?
+18.6k Golang : Example for RSA package functions