Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    Would by great to upload some screenshots because I really don’t understand what do you mean by saying “shows me a empty settings section”.

    Thanks,
    George Jipa

    Thread Starter domiwittmann

    (@domiwittmann)

    Hi George,

    I was not able to find a upload section here.

    So the left navigation is still shown but the inner frame where normally the settings are shown stays empty if i activate the plugin and click the save button.

    Hello,

    Sounds like there is an error when the settings are saved and plugin is trying to delete cache.
    Do you have wp-super-cache activated ? Because I’ve noticed that clear cache function (from wp-super-cache) has some bugs.

    Thread Starter domiwittmann

    (@domiwittmann)

    yes this plugin is installed but not enabled

    Before we release the next version, you can edit the plugin. Go to plugin folder/includes/classes/wp-maintenance-mode-admin.php and replace this:

    public function delete_cache() {
                // Super Cache Plugin
                if (function_exists('wp_cache_clear_cache')) {
                    wp_cache_clear_cache(get_current_blog_id());
                }
    
                // W3 Total Cache Plugin
                if (function_exists('w3tc_pgcache_flush')) {
                    w3tc_pgcache_flush();
                }
            }

    With this:

    public function delete_cache() {
                // Super Cache Plugin
                //if (function_exists('wp_cache_clear_cache')) {
                //    wp_cache_clear_cache(get_current_blog_id());
                //}
    
                // W3 Total Cache Plugin
                if (function_exists('w3tc_pgcache_flush')) {
                    w3tc_pgcache_flush();
                }
            }

    Hope this is the problem. 🙂

    Thanks!! this worked.

    Just a comment… I installed Super Cache and met grief with pages loading, accessing the media library and users not seeing changes to the site. As soon as I disabled and uninstalled Super Cache, which deleted all related data, I was back to normal. I hope Automatic has a guideline for developers to ensure compatibility with Super Cache. Lucky I read the posts before installing WP Maintenance Mode so I can start and apply the temporary fix.

    Hello,

    The fix is implemented in the latest version. Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Empty section after activating and saving’ is closed to new replies.