Unfortunately I cannot offer a public-facing link to the website in question as the site is live and I cannot leave it in a broken state. I can however describe the situation.
Swift is caching mixed content urls for my page assets (css and js).
Without swift, my site loads securely.
With swift, I get a bundle of mixed content errors on my font page.
(Mixed Content: The page at 'website' was loaded over HTTPS, but requested an insecure stylesheet 'https://website/wp-content/plugins/some-plugin/some-asset.css'. This request has been blocked; the content must be served over HTTPS.)
Interestingly, this occurs on the front page, but only after I have visited (swift has cached) any of the other pages on the website.
If I deactivate and reactivate swift, the problem goes away until I start loading other pages again.
Any idea at all why swift would be saving erroneous http urls?
Many thanks,
Brilliant plugin otherwise, certainly considering a license.
We have recently blocked port 80 on our server & everything is working on https apart form the bbpress/ultimate member login, where it always direct to http & no www. ().
for example its https://domainname.com, whereas I would like it to direct to https://www.domainname.com .
All the settings in WP are set to https & other pages work fine. Any ideas please?
Thank You
]]>We have recently blocked port 80 on our server & everything is working on https apart form the bbpress/ultimate member login, where it always direct to http & no www. ().
for example its https://domainname.com, whereas I would like it to direct to https://www.domainname.com .
All the settings in WP are set to https & other pages work fine. Any ideas please?
Thank You
]]>I don’t have mixed content within the post – that’s an https image link too.
The only thing which might be a clue is, up until a recent update to WP, the ‘Publish’ box on the WP-Admin post edit page always has an ‘enable SSL’ checkbox, which I had to tick for https to work. That check box has now disappeared. Might be unrelated, I don’t know.
]]>You have to change this file: wp-skitter-slideshow.php
]]>I changed
echo ‘((“https:” == document.location.protocol) ? “https” : “http”) + “://’ . $options[‘address’] . ‘/”; ‘;
to
echo ‘”https://’ . $options[‘address’] . ‘/”; ‘;
because if the Piwik server supports SSL it should be reached over HTTPS always, otherwise the 1st trial call via HTTP would send url-params in clear over the wire even if the server switches to HTTPS.
Indeed the check would be useful on ssl_compat = false side, as the piwik HTTP call from a page over HTTPS usually raise the mixed-content blocking by the browser.
So in short I think you should just drop the check and make the call straight over HTTPS if supported.
thx
]]>Thanks
]]>Please fix issue with SSL, my site address is https:// but your plugin still return images path with https://
]]>