I have cloudflare flexible enabled, How to redirect to https for Nginx server

There are several ways to enable https on your wordpress site. You need to update your site urls including https in it if you have access to your dashboard You can also define both the WP_SITEURL and WP_HOME in your test wp-config.php define( ‘WP_SITEURL’, ‘http://example.com.mytestdomain.com’ ); define( ‘WP_HOME’, ‘http://example.com.mytestdomain.com’ ); In relation to your nginx … 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.

Create a new hyperlink to wordpress blog

Thanks for your help, Jack, it was really useful. What I ended up doing was using the export and import function in the control panel. I returned the original blog to the main server directory. I then created a new installation of WordPress inside my website’s directory. It was just then a case of exporting … Read more

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

Moving site from HTTP to HTTPS

This seems like a webhosting error. Specifically, the webserver settings error. I vote not to switch to HTTPS 🙂 This may be a certificate setting error (not a wrong certificate itself) or routing for HTTPS requests.

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.