I'm getting them on my links in my head.
GET https://fr.s.us/js/jquery-ui.css net::ERR_INSECURE_RESPONSE
GET https://fr.s.us/js/jquery-1.9.1.min.js net::ERR_INSECURE_RESPONSE
GET https://fr.s.us/js/jquery-ui.js net::ERR_INSECURE_RESPONSE
Someone please enlighten me on these jquery console errors..
Failed to load resource: net::ERR_INSECURE_RESPONSE
If you use chrome, you can make a shortcut,right click and edit the shortcut's target, append this after target's string:
The complete string looks like this:
Try to open it in an incognito window. I hope this will help. Alternatively, you could modify
application/.htaccess
like so:You are trying to get data from an https that does not have certificate. Change "https://" to "http://". Worked for me.
Learn about CORS, try
crossorigin.me
is work fineExample: https://crossorigin.me/https://fr.s.us/js/jquery-ui.css
Not show a message error and continue page white, u need see error is try
http://cors.io/?u=https://fr.s.us/js/jquery-ui.css
enjoin us ;-)
I am assuming you're using Chrome.
If so, the root problem is a certificate mismatch / expired certificate.
You can see this for yourself in the code here.
Note in particular the use of the very constant you reference in the code on line 48 of the C++ file I sent you:
The current version of this file is here. The error status ERR_INSECURE_RESPONSE may not any longer be on line 48 but the error code still exists in the SSL certificate portion of the code.
Note: Make sure to use the hostname which is listed in the SSL certificate, chrome automatically switches to the right hostname if you are browsing but not when using javascript.
I had this problem with chrome when I was working on a WordPress site. I added this code
into the theme's functions.php file - it asks you to log in again when you save the file but once it's logged in it works straight away.