Page 1 of 1

HTTPS

Posted: Fri 03 Apr 2020 7:00 pm
by bri-ko
I just tried to access my Cumulus 1 station via HTTPS and got connected but the gauges did not show up. Titles for the gauges were there but the actual gauges weren't. I using the SteelSeries gauges. If anyone has a suggestion I'd be happy to know?

TIA,
Bri-ko

Re: HTTPS

Posted: Sat 04 Apr 2020 9:23 am
by mcrossley
We need a link to the broken page to take a look.

Re: HTTPS

Posted: Sat 04 Apr 2020 7:33 pm
by bri-ko

Re: HTTPS

Posted: Sat 04 Apr 2020 7:40 pm
by water01
You have a very old link to jquery (http://code.jquery.com/jquery-1.11.1.min.js) that needs updating as it is no longer finding it.

Very simple to see if you hit F12 in your browser and select Network you can see the code failing to load.

You need to make it load http://code.jquery.com/jquery-3.4.1.min.js for the latest version.

Re: HTTPS

Posted: Sat 04 Apr 2020 9:21 pm
by sfws
Water01 has said what matters, but you might find this additional information helpful.
water01 wrote: Sat 04 Apr 2020 7:40 pm very old link to jquery
It is irrelevant to you as user of Cumulus 1, but if you ever decide to swap to MX, an even older jQuery version is included in the MX package as the MX user interface that you use via a browser to set settings etc. uses it!
water01 wrote: Sat 04 Apr 2020 7:40 pm You need to make it load http://code.jquery.com/jquery-3.4.1.min.js for the latest version.
As Beteljuice has pointed out in another topic viewtopic.php?f=14&t=17573&p=138539&hil ... ry#p138539 as quoted below to save you looking it up, jquery-latest.min.js that you will find if you pick a CDN server to reference (or to download from) other than the official jQuery download site, is the even older 1.9.1 version, despite its filename it is not latest! It is this version that the MX user interface pages use.
beteljuice wrote: A problem that is starting to appear with older scripts and new 'cutting edge' scripts is that for quite some time now the '"latest" jquery script request is actually redundant and stuck in the past at something like ver 1.9.1.

JQuery is of course still in various cdn librarys but you have to ask specifically for which version you want.
It also recommended that you store a local copy rather than use a cdn.

The 'latest' JQuery inclusion is:
<script src="https://code.jquery.com/jquery-3.4.1.min.js" type="text/javascript"></script>

Re: HTTPS

Posted: Mon 06 Apr 2020 8:34 am
by Frank G
Please doublcheck the gauges-ss.htm-sourcepage. Links to needed sources must not refer to a "http"-site.
E.g. you refer to <script src="http://code.jquery.com/jquery-3.4.1.min.js"></script> but it has to be <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>.

Frank

Re: HTTPS

Posted: Mon 06 Apr 2020 9:09 am
by sfws
Frank G wrote: Mon 06 Apr 2020 8:34 am <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>.
Exactly as Beteljuice said in the quote I included in my previous post (I'm sorry I failed to notice David's quote I also included did not say https)

Re: HTTPS

Posted: Mon 06 Apr 2020 7:15 pm
by Frank G
Sorry for the misunderstanding, I was refering to the URL of the third post:
In the html-sorce is still http (<script src="http://code.jquery.com/jquery-3.4.1.min.js"></script>) instead of https.

Frank