Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter seand11

    (@seand11)

    By the way, thank you for all your efforts on this excellent plugin. ??

    Have you had any luck with this one? I’m trying to achieve the same thing.

    This is another, real problematic, bug of W3 Total Cache! Is affected also APC, XCACHE, WINCACHE and others Object Cache Backend. For now my solution is to disable W3 Total Cache “Object Cache Backend” and add manual related object cache file on wp-content. For example read here or here or here or here … Alternative Tribe Object Cache Plugin is also available on WordPress Plugin Repository ??

    P.S. If is not possible enable alternative Object Cache Backend, the only solution is disk cache, but this method, for me, failed …

    hi,seand11
    i have a problem needing your help?the plugin “filter-by-comments”,i added the code”orderby_last_activity’ => 1″,but it dosn’t work,how can i let it work?

    <?php
    	global $wp_query, $paged;
    	if( get_query_var( 'paged' ) ) {
    		$paged = get_query_var( 'paged' );
    	}
    	elseif( get_query_var( 'page' ) ) {
    		$paged = get_query_var( 'page' );
    	}
    	else {
    		$paged = 1;
    	}
    	$blog_query = new WP_Query( array( 'post_type' => 'post','orderby_last_activity' => 1, 'paged' => $paged ) );
    	$temp_query = $wp_query;
    	$wp_query = null;
    	$wp_query = $blog_query;
    
    	if ( $blog_query->have_posts() ) :
    
    			while ( $blog_query->have_posts() ) : $blog_query->the_post();
    				?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: W3 Total Cache] Object cache flushes entire memcached host’ is closed to new replies.