Page 1 of 1

SSL

Posted: Mon 15 Apr 2019 10:44 am
by ovader
Hi,
We are adding SSL to our weather page o-vader.se but we get an error message:
A script with an insecure url of "http://code.jquery.com/jquery-1.11.1.min.js" was loaded on line: 186 of https://o-vader.se/.
In which script do I find this string?
Best regards
Gunnar
o-vader.se

Re: SSL

Posted: Tue 16 Apr 2019 2:32 am
by jlmr731
Its because you are getting the script from another site and not using https, so there are 2 things you can do
1. change that scripts URL to "https://code.jquery.com/jquery-1.11.1.min.js" that will serve from a secure site
2. download the script to your host and the point to the file where you put the file in web directory so like if you make a dir "js" in your web root then you would call that script with
<script src="js/jquery-1.11.1.min.js"></script>