Using wp 401 with Genesis and w3tc on synthesis hosting platform
Hi, I have a similar problem with really simple ssl plugin that is saying
We detected a definition of siteurl or homeurl in your wp-config.php, but the file is not writable. Because of this, we cannot set the siteurl to https.
when I check the debug within really simple it shows (in part) otherwise plugin and ssl seems to be working.
not able to fix wpconfig siteurl/homeurl.
I looked at support site at RSSSL and found this thread.
In your wp-config, you have to look for
>>>
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);
and change the http into https.
<<<<
However, when looking at my file wp-config.php
I don’t see the this
In your wp-config, you have to look for
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);
and change the http into https.
What I see instead is
/** Enable W3 Total Cache Edge Mode */
define('W3TC_EDGE_MODE', true); // Added by W3 Total Cache
/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache
/** Enable W3TC PRO for Synthesis */
define('W3TC_PRO', true); // Added by Synthesis
/** Disable the default WordPress Cron */
define('DISABLE_WP_CRON', true);
/** code from really simple ssl */
//Begin Really Simple SSL Load balancing fix
if (isset($_SERVER["HTTP_X_FORWARDED_PROTO"] ) && "https" == $_SERVER["HTTP_X_FORWARDED_PROTO"] ) {
$_SERVER["HTTPS"] = "on";
}
does that code for really simple ssl mitigate the issue and I am receiving a false report?
Or is there something that still needs to be fixed