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
+10.6k Generate Random number with math/rand in Go
+33.8k Golang : How to check if slice or array is empty?
+9.7k Javascript : Read/parse JSON data from HTTP response
+6k Golang : Detect variable or constant type
+20.6k Swift : Convert (cast) Int to int32 or Uint32
+14.9k Golang : Get URI segments by number and assign as variable example
+5.5k Unix/Linux/MacOSx : How to remove an environment variable ?
+21k Golang : Convert PNG transparent background image to JPG or JPEG image
+7.7k SSL : How to check if current certificate is sha1 or sha2 from command line
+9.5k Golang : Terminate-stay-resident or daemonize your program?
+7.4k Golang : Of hash table and hash map
+12k Golang : Convert decimal number(integer) to IPv4 address