• Resolved zhenech

    (@zhenech)


    Hi,

    my site is reachable with and without SSL and I’m currently hunting plugins which make the SSL version break (ie include non-SSL stuff etc).
    Most is perfectly catched by https://www.ads-software.com/extend/plugins/wordpress-https/

    However, in lib/media-rss.php you include https://lite.piclens.com/current/piclens_optimized.js. WordPress-HTTPS could handle external links too, but thats evil performance wise, so I changes media-rss.php to look like this:


    function add_piclens_javascript() {
    echo "\n" . '<!-- NextGeEN Gallery CoolIris/PicLens support -->';
    if (is_ssl())
    echo "\n" . '<script type="text/javascript" src="https://lite.piclens.com/current/piclens_optimized.js"></script>';
    else
    echo "\n" . '<script type="text/javascript" src="https://lite.piclens.com/current/piclens_optimized.js"></script>';
    echo "\n" . '<!-- /NextGEN Gallery CoolIris/PicLens support -->';
    }

    Yes, https://lite&#8230; works fine, and I’m rid of stupid warnings about half-encrypted pages ??
    Hope you can add this to the next release.

    https://www.ads-software.com/extend/plugins/nextgen-gallery/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] i'd love better https support :)’ is closed to new replies.