Autodiscovery Feedburner RSS for your Drupal Site
I have just started playing with feedberner over the past couple of days and am amazed at how great the interface is and detailed the mextric is. I am not even using the pro account yet… but will probably upgrade by the end of the day :-) If you are blogging check out feedburner.
I have just started playing with feedberner over the past couple of days and am amazed at how great the interface is and detailed the metric is. I am not even using the pro account yet… but will probably upgrade by the end of the day :-) If you are blogging check out feedburner.
<!--[if !supportEmptyParas]--> <!--[endif]-->
If you have a drupal site and want feedburner to be you main
RSS feed then just edit the node.module in your modules folder changing
<!--[if !supportEmptyParas]--> <!--[endif]-->
href="'. url('node/feed', NULL, NULL, TRUE) .'"
/>');
<!--[if !supportEmptyParas]--> <!--[endif]-->
to
<!--[if !supportEmptyParas]--> <!--[endif]-->
href="http://feeds.feedburner.com/Whateveryourfeediscalled"
<!--[if !supportEmptyParas]--> <!--[endif]-->
<!--[if !supportEmptyParas]--> <!--[endif]-->
Check out the Drupal thread on this http://drupal.org/node/30534.
<!--[if !supportEmptyParas]--> <!--[endif]-->
Lets test it right now with this mp3 attached…
<!--[if !supportEmptyParas]--> <!--[endif]-->
5 Comments
Drupal FeedBurner module
You might be interested in checking out the Drupal FeedBurner module (http://drupal.org/project/feedburner/) that I've been working on lately. It makes redirecting feeds to FeedBurner really easy without having to hack Drupal core or use .htaccess.
With my patch, people can
With my patch, people can still subscribe to node/feed but it will be automatically redirected to the feedburner feed. It will also redirect existing subscriptions.
Great! I follow now Thanks
Great! I follow now Thanks Mike
Another Drupal patch
I came up with a different patch, which I'm using at macmegasite.com & worldbeatplanet.com.
In node.module, change the following lines in node_page()
case 'feed': node_feed(); return;to:
case 'feed': header("Location: http://feeds.feedburner.com/your_feed_url"); return; case 'something_random': node_feed(); return;I use some random value for the selector which calls node_feed and specify that in feedburner as the URL for my feed. Now feedburner will be the only one that subscribes to the actual feed - everyone else who subscribes to node/feed will get the feedburner feed.
Later I changed it to a REDIRECT PERMANENT in my .htaccess to avoid the extra processing overhead.
Thanks Mike but why would
Thanks Mike but why would this patch be
better then the other solution?