Page 1 of 1

X2 and SSL

Posted: 25 Apr 2014, 13:08
by bash
Hi

I tried to running Imagevue with SSL on Apache.
With Firebug, i have found following request, which is always not encrypted :
Code
http://s7.addthis.com/js/250/addthis_widget.js?_=*********

Please can someone explain me, why this request is needed. There are some other requests to the
same Domain addthis.com, but only the one to s7.addthis.com goes through http (nonSSL).
Every time a visitor is surfing on my side with firefox, firefox report an insecure connection of course.

Thanks in advance
Pascal

Re: X2 and SSL

Posted: 26 Apr 2014, 01:40
by mjau-mjau
That is for the "sharing" service running from addthis.com ... You should be able to fix it by editing the file iv-includes/templates/default/index.gallery.phtml line 48:
Code
$.getScript('http://s7.addthis.com/js/250/addthis_widget.js#pubid= ...
Change it to:
Code
$.getScript('//s7.addthis.com/js/250/addthis_widget.js#pubid= ...
It should make the https call:
https://s7.addthis.com/js/250/addthis_widget.js

Re: X2 and SSL

Posted: 26 Apr 2014, 07:01
by bash
Hi Karl

Ahhh :)
I have only enabled the Twitter and Facebook sharing, therefore I have not noticed this!

Thanks Karl for the very quick response.

Now, it seems all fine! Also the Safari and the Firefox Browser showing a secure label now!

Great!! :) :)

cheers
Pascal