Forgot that part. Thanks for the additional tip, Markku.
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:
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:
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.
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.
Hmm…PinoyBlog.com is down Sir Yuga?
I was about to make a post but the site isn’t there.
<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>