stops working (if not logged in) after 4.9.5 update?
-
I have two identical wordpress servers behind a load balancer. Updating to WP 4.9.5 broke a few things, and required me to change my wp config settings from
define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']); define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']);
to
define('WP_SITEURL', 'https://' . $_SERVER['SERVER_NAME']); define('WP_HOME', 'https://' . $_SERVER['SERVER_NAME']);
as well as make some nginx adjustments so I could use multiple domains as before. But then I started having an odd problem with the SSL insecure content fixer plugin.
1. IF I am logged in, the site looks fine and all content is secure
2. IF I am NOT logged in, the site will load but completely misformatted with errors about mixed content. No matter what setting I use in the plugin, the result is the same.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘stops working (if not logged in) after 4.9.5 update?’ is closed to new replies.