Page Cache automatically clears every 60 minutes
-
Hi all,
Somehow the page cache on my website is removing itself every 60 minutes. The page cache method I am using is disk basic. In the advanced settings I already edited the “Garbage collection interval” into 604800. I also inserted the code below into the functions.php file.
add_filter('w3tc_pgcache_lifetime', function($request_uri, $time) { if( $request_uri == '/' ){ $time = 604800; } return $time; });
It would be really great if someone can assist me.
Thanks
Tim.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Page Cache automatically clears every 60 minutes’ is closed to new replies.