Questions tagged [feedburner]

FeedBurner is a web feed management provider launched in 2004

FeedBurner is a web feed management provider launched in 2004. FeedBurner provides custom feeds and management tools to bloggers, podcasters, and other web-based content publishers.

113 questions
1
vote
1 answer

How to add some content on header and footer in Google Feedburner message body

Now before three days, I 'm searching the options for adding the some content in header and footer in our daily feedburner . So please help me and provide the solution how can I do it. Needed : In the header section, I want to add some holy text…
1
vote
1 answer

regex for feedburner name

I want to get the feed name from feedburner feed url. I'm trying this: $feed = 'http://feeds.feedburner.com/name'; $pattern = '~(?:http|https|)(?::\/\/|)?feeds.feedburner\.com/(?:clip:)?(\w+)~'; preg_match_all($pattern, $feed, $feed_name); and…
ThemesCreator
  • 1,749
  • 6
  • 27
  • 49
1
vote
1 answer

WordPress, Passing posted_data from Contact Form 7 via wpcf7_before_send_mail hook to FeedBurner

I am developing a WordPress plugin that uses the Contact Form 7 wpcf7_before_send_mail action hook to grab the email that is entered in CF7 and, if the user select a checkbox, pass it the the email to MailChimp and FeedBurner. The MailChimp…
Tom Zapor
  • 49
  • 2
  • 6
1
vote
2 answers

Tumblr to Feedburner to iTunes only 15 episodes showing

I am using a tumbler site (http://howmuchcanyouchugfoo.tumblr.com/tagged/podcast/rss) to populate a podcast on itunes, by way of feedburner. Despite enabling infinite scroll, Tumblr seems to only make the last 15 episodes available. I have tried…
1
vote
3 answers

Outgoing load balancer

I have a big threaded feed retrieval script in python. My question is, how can I load balance outgoing requests so that I don't hit any one host too often? This is a big problem for feedburner, since a large percentage of sites proxy their RSS…
ʞɔıu
  • 47,148
  • 35
  • 106
  • 149
1
vote
1 answer

Possible to have 2 Feedburner RSS feeds for 1 blog (1 that provides full content, 1 for tease only)

I would like to syndicate a Wordpress blog on multiple sites. However, the way Feedburner is set up is to only provide the first bit of the blog so people will come to the blog for more and see additional content. A syndication publication is…
Axel F
  • 11
  • 1
1
vote
1 answer

RSS feed readers show old news, don't update

I'm having a very strange problem. I created an RSS feed from an XML file and hosted it on my company's site. I added new feed items (nodes into the XML file) from a C# application and I see them populate when I check the feed directly in a web…
Paul
  • 1,375
  • 2
  • 21
  • 55
1
vote
2 answers

Can't get 9GAG feed

I am creating a 9GAG reader app for Windows 8 by using RSS Feeds and WinJS. Code: function downloadBlogFeed() { WinJS.xhr({ url: "http://feeds.feedburner.com/9GAG" }).then(function (rss) { var items =…
Cristina Ursu
  • 201
  • 2
  • 6
  • 18
1
vote
1 answer

Extracting from feedburner feeds?

I want to extract title and image for each item mentioned in http://rss.cnn.com/rss/edition.rss feed using PHP ,could anyone please help me out ? Thanx
1
vote
1 answer

feedburner broken links within feed

We have setup a rss feed, http://www.beautysouthafrica.com/RSS/BeautySA-RSS-Feed.aspx and have linked it up with our feedburner account, http://feeds.feedburner.com/beautySA. However, if you click on the links within the feedburner feed they return…
purse9644
  • 23
  • 3
1
vote
1 answer

How to fetch Feedburner RSS Feed subscribers count in PHP & WordPress

I have been using a WordPress based PHP function for quite a while now to retrieve the Feedburner subscriber count to be able to display the subscriber count as text. Here is the function: /** * Fetch Feedburner RSS Feed Subscribers. * * @param…
Jason
  • 4,899
  • 12
  • 47
  • 56
1
vote
2 answers

Can't get feed in Windows 8 app

I am creating blog reader app for Windows 8 by using RSS feeds. Part of code: function downloadBlogFeed() { WinJS.xhr({ url: "http://feeds.feedburner.com/CssTricks" }).then(function (rss) { var items =…
user1726774
1
vote
0 answers

Unable to create Feed in feedburner

We are unable to create a feed for our website http://www.eccouncil.org on FeedBurner. It gives an error: The URL does not appear to reference a valid XML file. We encountered the following problem: Error on line 15: The entity name must…
1
vote
1 answer

Url Redirect for a File in Asp.NET MVC3? (FeedBurner)

I have a podcast feed set up in an XML file, and my current subscribers subscribe to it using the direct file URL. (so http://website.com/feed.xml) I've been reading about how you can set up a COPY of that XML file with FeedBurner, force all future…
AJH
  • 365
  • 1
  • 4
  • 18
1
vote
2 answers

php: Getting the contents of a feedburner feed

I wrote this function to parse through html source code, but for some reason it does not work for feedburner feeds. Any ideas? $dom = new DOMDocument(); $dom->loadHTMLFile('http://www.killington.com/winter/mountain/conditions'); $xml =…
Bo Hood
  • 11
  • 1
  • 2