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
+6.6k Unix/Linux : How to fix CentOS yum duplicate glibc or device-mapper-libs dependency error?
+9.9k Golang : Get login name from environment and prompt for password
+19.1k Golang : Get RGBA values of each image pixel
+22.7k Golang : Gorilla mux routing example
+40.8k Golang : How to check if a string contains another sub-string?
+11.9k Golang : Perform sanity checks on filename example
+8k Golang : Randomize letters from a string example
+4.5k JavaScript : Rounding number to decimal formats to display currency
+22.7k Golang : Calculate time different
+20.9k Golang : For loop continue,break and range
+14k Elastic Search : Mapping date format and sort by date
+8k Golang : HTTP Server Example