Problems with multisite
-
I converted an existing large site with over 1000 user subscriptions to multisite. Afterward, users noted that their subscription preferences had all gone blank. I was able to solve the problem by changing the wpmu check on line 1620 of class-s2-core.php:
I replaced this:
// Is this WordPressMU or not? if ( isset($wpmu_version) || strpos($wp_version, 'wordpress-mu') ) { $this->s2_mu = true; } if ( function_exists('is_multisite') && is_multisite() ) { $this->s2_mu = true; }
with this:
if (is_main_site()) { $this->s2_mu = false; }else{ $this->s2_mu = true; }
Can you suggest a better long term solution or add this check to the plugin so subscriptions don’t break on plugin upgrade? Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problems with multisite’ is closed to new replies.