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
+34.8k Golang : Upload and download file to/from AWS S3
+6.9k Golang : Array mapping with Interface
+5.9k Golang : Debug with Godebug
+14.2k Golang : On enumeration
+10.8k Golang : Create S3 bucket with official aws-sdk-go package
+4.7k Unix/Linux : secure copying between servers with SCP command examples
+4.9k Golang : Convert lines of string into list for delete and insert operation
+21.8k Golang : Convert seconds to minutes and remainder seconds
+9k Golang : Apply Histogram Equalization to color images
+8.6k Golang : Take screen shot of browser with JQuery example
+19.6k Golang : Accept input from user with fmt.Scanf skipped white spaces and how to fix it
+8.8k Golang : Handle sub domain with Gin