Mixed Content Wordpress - why no padlock?

Опубликовано: 14 Октябрь 2024
на канале: TwP - Helping Creators with Tech
21,775
388

Blocked by mixed content on Wordpress after installing SSL certificate? You must be asking why is there no padlock?

In most cases mixed content error is easy to fix. Most important step is to identify where the issues is with chrome's inspector and then it's easy to update. The tutorial to fix mixed content is in Chrome, however you can use firefox as well.

Summary of steps:
1. Update wordpress settings with https
2. Check images & videos urls
3. Add http to https redirections
4. Updated plugin code

Code for htaccess:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Blog I was updating: http://www.befittyblog.com/

Useful URLs:
Debugging mixed content https error on self build website:    • Mixed Content https - SSL not secure  
Video for htaccess location:    • How to show hidden files (.htaccess) ...  
Where the heck is Cpanel? Check this:    • Video  

You'll find more tutorials here: http://punchsalad.com

If you have any questions, leave me a comment below, I will be glad to help. I hope you liked this tutorial!