Log in

View Full Version : Ultimate Fade-in slideshow https (ssl) problem



julian0852
11-02-2012, 09:41 AM
I have developed a site using the Ultimate Fade-in slideshow.

It works fine on all browsers under http.

However we have a secure site - https (ssl) and again it works fine on all browsers except Chrome. The slideshow is simply missing??

Has anybody had this issue with https on Chrome?

jscheuer1
11-02-2012, 12:21 PM
Are the images and scripts also https?

If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.

julian0852
11-02-2012, 04:10 PM
Thanks for the reply.
The page is https://www.ward-hendry.co.uk/home.asp

jscheuer1
11-02-2012, 05:15 PM
The page is referencing an insecure script:


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

Chrome is blocking it. There are at least 3 choices:

Add the s as shown:


<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>


Or you can allow the browser to select the protocol (this only works on a live page):


<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>


Or you can download and host the jQuery script on the secure server and point to it there.

I like #2 best, except if you need to be able to run the page locally. In which case either 1 or 3 will be fine.

The browser cache may need to be cleared and/or the page refreshed to see changes.

julian0852
11-02-2012, 06:32 PM
Many thanks John - problem sorted!