I've had no trouble with the wpmufeed plugin up until yesterday. One my users blogs no longer shows in the feed. He's made posts in the last day (in fact he has the newest post after a mainblog post).
Since yesterday none of his posts show up in the wpmufeed although his local rss is working fine.
his url is: http://nosebleed.dreamflicks.com
sitefeed is: http://dreamflicks.com/wpmu-feed/
I've cleared the cache, checked the database, checked his settings. I'm at a total loss on this.
Quick addition to this:
The front page of dreamflicks.com uses the following code to display the recently updated blogs:
<?php
$blogs = get_last_updated();
if( is_array( $blogs ) ) {
?>
<ul>
<?php foreach( $blogs as $details ) {
?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
}
?>
</ul>
<?php
}
?>
That's also not displaying the missing blog. It appears for some reason that his blog isn't showing in the database as updated.
Looks like there was a small bug in the database that was causing errors in the blog_id privacy. His blog's dash said it was not private but the db said it was. Restored db backup for that blog and it's working fine now.