• Hi,

    I have noticed that a number of our pages are not being saved in the cache directory (‘wp-content/cache/page_enchanced/url/’) and consequently the pages are re-generated on every request. All these pages have in common is the use of fetch_feed() to list items from different blogs. When I commented out the fetch_feed() function the cache works correctly. I also tried enabling ‘Cache feeds’, but it did not solve the issue.

    Is any one experiencing this issue? or is just a configuration problem?

    We are using W3 Total Cache 0.9.2.8 and WP 3.5.1.

    Thanks

    http://wordpress.org/extend/plugins/w3-total-cache/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Same here, this has been occurring since we updated to the latest version.

    Pages on one of our projects aren’t being cached when they contain a widget that uses fetch_feed.

    I created a work-around by caching the feed as a transient. So instead of:

    $feed = fetch_feed( $feed_url );

    You would do:

    // Require for dealing with feeds
    require_once ( ABSPATH . WPINC . '/class-feed.php' );
    
    // Check if feed transients exists
    if( false === $feed = get_transient( 'foo_transient_key' ) ) {
    
       // If not, fetch it
       $feed = fetch_feed( $feed_url );
    
       // Store as transient for 4 hours
       set_transient( 'foo_transient_key', $feed, 4*60*60 );
    }
    
    // You now have an object $feed just like you did before

    Now you’ll only fetch the feed once every 4 hours, and W3TC will cache your page the rest of the time.

    This seems to fix the problem. I always thought fetch_feed does its own transients/caching though. Either way, it’s still weird W3TC skips entire pages for one simple fetch.

    Plugin Contributor Frederick Townes

    (@fredericktownes)

    I can’t see anything that would cause cache to fail with fetch_feed. Could you please submit a bug submission form from the support tab of the plugin?

    Done!

    Thread Starter JowiM

    (@jowim)

    @frederick Townes. I have also submitted a bug report.

    @super Interactive. Thanks for your solution it worked great

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘fetch_feed() breaking caching’ is closed to new replies.