• Resolved peaceharbor

    (@jlc500k)


    I manage a handful of WordPress sites, and regardless of which site I install this plugin (new installs included) whenever I go to enable page caching, the settings never save. It appears that it’s trying to, but it never completes. Any idea what would cause this?

    It’s not a browser issue as I have tried numerous with the same result. Running WordPress 5.3.2

    • This topic was modified 4 years, 10 months ago by peaceharbor.
Viewing 6 replies - 1 through 6 (of 6 total)
  • @jlc500k

    Sorry for the delay!

    Can you please enable debug mode, Please add following lines to wp-config.php just before where it says: /* That’s all, stop editing! Happy publishing. */

    define( ‘WP_DEBUG’, true );
    define( ‘WP_DEBUG_DISPLAY’, false );
    define( ‘WP_DEBUG_LOG’, true );

    A debug.log file should be created inside wp-content folder, share the file with us.

    Thanks,
    Harshad

    Thread Starter peaceharbor

    (@jlc500k)

    Got it. What’s the best way to share it with you privately?

    Hi Josh,

    Please send it via this form: https://getwpo.com/ask-pre-sales-question/ and mention this support thread. If the content of the file is to large, please share a link to the log file.

    Could you also check your browser console for any javascript errors?

    Thanks

    Marc.

    Thread Starter peaceharbor

    (@jlc500k)

    Done. Thanks!

    Hi Josh,

    The code provided above by @bornforphp has some issues, the single quotes aren’t the right character, which results in warnings: Use of undefined constant a€?WP_DEBUG_LOGa€? - assumed 'a€?WP_DEBUG_LOGa€?' (

    Please try deleting it and using this instead:

    
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    define( 'WP_DEBUG_LOG', true );
    

    It might look the same, but the code used apostrophe instead of single quotes.

    Once this is done, open your browser console, then attempt to enable caching and save settings.

    You can then check for errors in the javascript console, and update the log file you sent (if it’s not the live log file).

    Thanks
    Marc.

    Thread Starter peaceharbor

    (@jlc500k)

    I actually was able to troubleshoot it to a plugin Divi Contact Form Extended. The publisher is aware of some issues with this plugin and is working on pushing out an update. Thanks for your assistance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Settings Won’t Save’ is closed to new replies.