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.9k Swift : substringWithRange() function example
+11k Golang : Replace a parameter's value inside a configuration file example
+6.9k Fix sudo yum hang problem with no output or error messages
+12.8k Golang : Listen and Serve on sub domain example
+11.5k Golang : Format numbers to nearest thousands such as kilos millions billions and trillions
+21.2k Golang : Get password from console input without echo or masked
+7.2k Golang : Dealing with postal or zip code example
+10k Golang : Channels and buffered channels examples
+5.6k PHP : Fix Call to undefined function curl_init() error
+13.5k Facebook PHP getUser() returns 0
+4.5k Java : Generate multiplication table example