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
+5.5k Golang : Display advertisement images or strings on random order
+13.2k Golang : Handle or parse date string with Z suffix(RFC3339) example
+4.7k Adding Skype actions such as call and chat into web page examples
+7.6k Golang : Create zip/ePub file without compression(use Store algorithm)
+19.3k Golang : Check whether a network interface is up on your machine
+8.3k Prevent Write failed: Broken pipe problem during ssh session with screen command
+7.9k Golang : Reverse a string with unicode
+5.9k Unix/Linux : How to test user agents blocked successfully ?
+3.5k Golang : Fix go-cron set time not working issue
+7.5k Golang : Process json data with Jason package
+5.5k Unix/Linux : How to archive and compress entire directory ?
+11.2k Golang : How to determine a prime number?