Posted by henrrrik on January 28, 2011 at 1:19pm
3 followers
| Project: | FeedBurner |
| Version: | 6.x-1.0-beta4 |
| Component: | Documentation |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Issue Summary
We moved a site to Pressflow with Varnish which caused Feedburner to stop updating. I haven't had time to dig any deeper as to what caused it, but it looks like Feedburner kept parsing its own feed. I disabled the module and moved the redirect logic to .htaccess as a workaround.
Comments
#1
You'd need to disable caching on the feed in Varnish as it has to use user-agent conditional matching and operations in PHP.
#2
Same problem here, i solved it setting the expiration time for the .xml files in the .htacces.
Regards,
elkin.
#3
Ah, of course. Turned out the workaround only worked for a single request. :-)
We solved it by adding this to the Varnish vcl:
if (req.http.user-agent ~ "FeedBurner") {return (pass);
}
I've attached a patch that adds this info to the README.txt.
#4
#5
I see, is a better solution.