WebsiteBaker Support (2.8.x) > Droplets & Snippets

Question about securelink droplet for SSL certificate 2

<< < (2/2)

fab2000:
thanking all I just solve 99% of my problem.
1% is that the page with F.A.Q. baker module continues to show "not secure"
I'll remove 2 external http link but the problem persists.
May be the module? I use the last, I think, version 1.46
Thanks

Gast:
maybe you post a link to this page
other solution: right mouseclick on the page on a free place and select: show source, then in the window with the sourcecode, starting search (on windows with STRG + F), write in the search field the word "http:" - result is a link inside of the sourcecode to the unsecure target and here, you must know, does it come frome the module or not
also possible: search for the word "http:" inside of the module folder from the FAQ Baker Module

fab2000:
The last page where I have problems is one where I use Member module: the images, in media directory, are loaded as http end not as https internal server.
All other pages, thanks ..., are working well.

Ruud:
Members will store the images as direct link (where newer modules use a variable).
You could fix it using a droplet.

Call it fixhttps

--- Code: (untested droplet) ---<?php
// replace www.domain.com with your domainname
$old = 'src="http://www.domain.com';
$new = 'src="https://www.domain.com';
$wb_page_data = str_replace($old, $new, $wb_page_data);
return true;
?>
--- End code ---

Put [[fixhttps]] somewhere in your template to fix any <img> sources that are not yet https.

fab2000:
thanks

Navigation

[0] Message Index

[*] Previous page

Go to full version