• Resolved maironbrainer

    (@maironbrainer)


    Hello, I have a problem, I update my site frequently and I have already disabled Purge All On Upgrade, but every time my site is updated the cache is updated too, I didn’t want the cache to be cleared every time I create or update a post .

Viewing 1 replies (of 1 total)
  • Plugin Support qtwrk

    (@qtwrk)

    Hi,

    some purge actions are hard-coded

    if (strpos($_SERVER['REQUEST_URI'], "LSCWP_NONCE") === false){
    ob_start( function($buffer){
    @header('X-LiteSpeed-Purge: nothing');
    return $buffer;
    } );
    }

    add this at top of your theme’s functions.php

    it should suppress the purge call

    please be aware, this will remove all the purge action except manual click on “purge all” in drop down menu

    Best regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Cache’ is closed to new replies.