Sorry guys, I've been out of the office dealing with some personal issues. I will be hiring and training new support staff in December but am currently running things alone.
Evaluation of this has been difficult as many people are running 1.8.7 without issue. The only difference between 1.8.6 and 1.8.7 is that when a user upgrades from one CDSEO version to another, 1.8.7+ will automatically clear the CDSEO cache to ensure all settings are updated.
I'm almost certain the issue is a conflict with a third-party module and am hoping nobody wrote a module that would disable CDSEO under some circumstances. CDSEO itself should not be able to disable itself as there is no function to do so except on license violation and it is only licensed on the admin side of things.
As a fix for now, you can ensure that CDSEO is always enabled as follows:
Open auth.php in your store root (same folder as cart.php)
FIND:
Code:
// WCM - CDSEO Pro Links
include_once $xcart_dir."/modules/cdseolinks/cdseo_config.php";
// / WCM - CDSEO Pro Links
BEFORE ADD:
Code:
// WCM - Ensure CDSEO is enabled
db_query("UPDATE wcm_cdseo_config SET config = '1' WHERE cdseoType = 'status'");
// / WCM - Ensure CDSEO is enabled
I will keep this thread updated. Please let me know if you are able to provide any insight.