Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+8 votes
969 views
in Plugins by

I've put together a new plugin for converting images to HTTPS. When you switch your site over to HTTPS, chances are you have many images linked from previous posts, either to your own site or external sites. But linking to images using the http:// protocol instead of https:// causes "mixed-content" warnings in most browsers, and the browser may now say the page is not secure.

Some image links can be rewritten to HTTPS where supported, but not every site supports HTTPS. This plugin handles both those situations!

HTTPS Image Proxy plugin

If an image is linked insecurely, the plugin will check a list of known secure hosts and change the URL to https:// if possible. Otherwise, it will change the URL to use a proxy script on your own site, so the image appears secure to the user. The server fetches the original image and caches it (if a writable directory is specified).

Note: this plugin is currently in beta so it may be unstable, but feel free to give it a try and let me know how it goes. Make sure to follow the instructions in the README, as manual configuration is required (via a config.php file rather than Q2A admin page).

by
The link you provided for the plugin is not working
https://github.com/svivian/q2a-https-img-proxy
by
@Thom that's the same link I posted. Not sure what the problem is, maybe GitHub was down briefly.

1 Answer

0 votes
by
reshown by
Hi,

I installed this plugin, but it's always returning the missing image file for me. When I dug into the code, it looks like $imageData is always resolving to "", even though the URL to the image provided is valid. I'm wondering if the fact that the images being served are all stored on my server from user uploads is to blame here?
by
Hello, not sure what the problem could be. Check that your cache directory is writable, and that you have the cURL extension installed (should be there by default).
...