SSL Mixed Content Error

trashtalk

Regular Member
Joined
Nov 30, 2011
Messages
494
Reaction score
58
Hello there, been working on my website last night and installed SSL on my website but i got this error "Mixed Content" on most of the pages / post on my website. All of them are in HTTPS already but still getting the error of mixed content. Can someone tell me how to fix this? I already tried to edit the .htaccess but still no luck. There is a wordpress plugin and it fixed the issue but i would like to know how to fix this without any plugins. Anyway, I am on cPanel and a Wordpress website

pRBN7YB


4sD5AFA
 
Hi, your template is calling some resources over http protocol. You needs to find those calls into you template and replace the http:// by the https

Cheers
 
You can easily fix it without any plugins, but how you fix it will depend on where the URL is located. For example, whenever I encounter the mixed content issue with images, I simply delete the image and reupload the image it. If the issue turns out to be a font, Just go into the style.css file and change the HTTP URL to HTTPS.

Just go to the file that's causing the issue (your Inspect Element tool will tell you), and change the problematic URL to HTTPS, but make sure there's an HTTPS version of the URL first.
 
Use Firefox + Firebug. Open the network panel and see where all the requests go. See which one is a http://

Like Zwielicht said, test to see if a https version is out there.

Substitute http://whatever to //whatever and it'll run on both http and https.

If there is no http version you'll have to upload that resource to somewhere with https
 
Back
Top