How to fix https message "unsafe" in Chrome?

My site is a WordPress website located here: https://www.saintjohnscamp.org/ . I can’t understand how to fix the https “unsafe” message that appears when viewing a site in Google Chrome that says: “Your connection to www.saintjohnscamp.org is encrypted using 256-bit encryption. However, this page does include other resources that are not protected ... "I tried to disable all plugins in WordPress and looked at the source code of the page and could not find the images, iframes, objects, etc. that are pulled from http: // instead of https: //. The only instances of http: // in the source code are external links that do not affect an insecure message (as far as I know). Can someone point me in the right direction? Is there a utility or service that I can use to fix this message and fix my page so that it is fully compatible with https?

+8
ssl wordpress
source share
2 answers

To view a query using Wireshark:

Close other browsers, open Wireshark, select Capture - Interfaces and select "Start" on the active Internet device. Then enter "http" in the upper filter field, it will display the current HTTP requests and responses. You can also filter port 80 (http) or 443 (https).

Wireshark shows that the site is requesting http, not https, for:

platform.twitter.com/widgets.js?ver=1.1

twitter.com/javascripts/blogger.js

api.flickr.com/services/feeds/photos_public.gne

and other twitter.com and flickr.com URLs.

+1
source

I think your problem is that the url is:

https://lite.piclens.com/current/piclens_optimized.js

Piclens offers only two versions:

The current SSL certificate has expired.

+5
source

All Articles