Reputation: 51393
I just moved my site to ssl, but I have insecure content. What exactly does this mean, what sort of changes do I need to make?
Thanks!
Upvotes: 2
Views: 373
Reputation: 41
It means that your page is still loading some content over http (unsecured). An easy way to find what it is that is being loaded is to watch the network tab in Developer Tools on chrome or firebug on firefox.
Upvotes: 4
Reputation: 1475
It usually has to do with the src
attribute, e.g. using jquery from googleapis. If so, change the source to https
instead of http
Upvotes: 1