I'm not sure how to get FeedFlare to work. I have the FeedBurner module working and have the main RSS redirection working just fine. I've set the node type to the type that I want the FeedFlare added to and set it to display in teasers and full-page, but still nothing.

Any tips or advice would be greatly appreciated. Thanks.

Comments

dave reid’s picture

Status: Active » Postponed (maintainer needs more info)

A couple of questions:
- Have you enabled FeedFlare in your FeedBurner account?
- If you view the source code for the page that should have FeedBurner, is the FeedFlare JavaScript there (something like <script src="http://feeds.feedburner.com/~s/*feedname*?i=*pageurl*" type="text/javascript" charset="utf-8"></script>)

frenchierachel’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

My client told me he had the FeedFlare turned on, but he didn't (I didn't have access to the Feedburner account to check). So, that was the problem. Thanks!

Yura Filimonov’s picture

Status: Closed (fixed) » Active

Since the topic is the same, I won't change the subject.

I enabled the module, enabled the feed and feedflares didn't work in the full page (blog post), Drupal 5.7.

I had to change the module code for the script to work.

I changed the following lines:

$feedflare = '<script src="http://feeds.feedburner.com/~s/myfeeduri'. 
$feeds['blog']; 
$feedflare .= '?i='. url('node/'. $nid, NULL, NULL, TRUE); 

Replaced ?flareitem with ?i.
Added ~s/feedurl to the feed URL
Changed rss.xml to blog (I wanted to only track the blog)

For the future, I'd appreciate if you allow more customization there. Not everyone wants to publish rss.xml and only this feed.

dave reid’s picture

Status: Active » Closed (fixed)

This is fixed in the 5.x version of the module.