infinix x yugatech

Convert your Subscribers to Feedburner

Listen to article

It doesn’t mean that if your Feedburner chicklet counter is stuck at zero, you don’t have RSS subscribers. If you are using WordPress, you will notice that there are three versions of your RSS feeds for auto-discovery — RSS 0.92, RSS 2.0 and Atom 0.3.

When you added your Feedburner feeds, it doesn’t automatically count all other who have already subscribed previously. There are ways to fix this real quick:

First, you need to change your meta data for the RSS feeds. Go to your theme template and look for the header file (sometimes it’s the single.php and the index.php files) and you will see a snippet of code like this:

<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”” /></link>

<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” /></link>

<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” /> </link>

Replace that variable in the HREF tag to your Feedburner URL as such:

<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”http://feeds.feedburner.com/yugatech” />

<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”http://feeds.feedburner.com/yugatech” />

<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”http://feeds.feedburner.com/yugatech”‘ />

This step will ensure that any future subscribers get your Feedburner feeds and not the WP defaults.

Now if you want to move your old subscribers to your new Feedburner feeds, you will need to edit your accounts .htaccess. This file can be found inside your root folder (usually public_html). However, you may not be able to see them thru FTP so you need to use your Control Panel’s (cPanel) File Manager to edit that.

Add this line of code:

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteRule ^index\.xml$ http://feeds.publisher.com/feedURLatFeedBurner [R,L]

Note: Change the ones in bold to your own Feedburner URL.

If you are using a custom permalink structure, you might see tons of codes in there and get confused. Don’t be. Just look for the line on the top part which says “RewriteEngine on” and paste the rest of the code just below it.

That’s it, you’re done. You should bee seeing your Feedburner counter hitting some digits anytime soon.

React to this article:
Written by
Abe Olandres

Abe Olandres

Editor-in-chief

Abe is the founder and Editor-in-Chief of YugaTech with over 20 years of experience in the technology industry. He is one of the pioneers of blogging in the country and is considered by many as the Father of Tech Blogging in the Philippines.

View all posts by Abe Olandres →

6 Comments

AB
Abe Olandres Editor-in-chief · 20 years ago

Forgot that part. Thanks for the additional tip, Markku.


Reply
MA
markku · 20 years ago

Yuga, the rewrite rules you’ve written only works if your previous xml feed was named “index.xml”. More rules must be added to take into account feed urls such as “wp-rss.php” or “domain.com/feed” as well as “domain.com/feed/(rss2|atom|rss)”…

The feedburner forums can very well help with this. =)

Additionally, you need not promote your feedburner feed to use feedburner. You can still use WP’s default feeds but serve them from feedburner.


Reply
JH
jhay · 20 years ago

Hmm…PinoyBlog.com is down Sir Yuga?

I was about to make a post but the site isn’t there.


Reply

Leave a Reply

Loading next article...