SSL problems with WordPress

You can follow this tutorial to setup Administration Over SSL at the WordPress codex. It explains how to setup your configuration to use SSL on the Admin area.

WordPress and SSL

I believe generally, a website is either secure (SSL), or it’s not. If you needed to activate SSL for a portion of your website, you should keep it all as https://. There is no drawback to doing so. If anything, it will give people more confidence in your website. Those 2 links you have mentioned … Read more

I would like to add ssl certificate to my already existing wordpress site

Yes it applies to your old articles. There are several specific issues related to images which use absolute urls (mixed content errors). Basically you need to inform plugin/theme authors to update their code or to update it yourself (which is not recommended because in case of update you will lose the changes.) Yes. After applying … Read more

SSL certificate breaks CSS (in combination with W3TC)

I checked out your website and the issue seems to be related to files served from https://files.planetofsuccess.com/…. If you`re disabling the CDN feature from W3 Total Cache, things should be working fine. So the problem is not the plugin, but the CDN connection, which breaks things. To fix this issue, you’ll have to get in … Read more

WordPress Insecure Content

Here is more info on the code you are referring to: https://codex.wordpress.org/Function_Reference/home_url “https” if is_ssl() and “http” otherwise. If the $scheme argument is “http” or “https” the is_ssl() check is overridden.

How to switch static files back to using HTTP instead of HTTPS?

Rocky. You can try these: make sure the values changed in database If you can’t login to wp-admin > settings to confirm that, you can go to database, wp_options table and look for siteurl and home values add code to wp-config.php Add these lines to wp-config.php define(‘WP_HOME’,’http://example.com’); define(‘WP_SITEURL’,’http://example.com’); Clear your cache Make sure that you … Read more

Forcing SSL (Bad Theme coding)

I would recommend SSL Insecure Content Fixerplugin, which solves all mixed content problems. I use it successfully on numerous websites. No need for changes in your theme.