FeedBurner provides you with a lot of useful statistics about the usage of your feeds.
Using FeedBurner is simple and free. In order to use FeedBurner, you should go to the official website and register for the FeedBurner service.
Follow the detailed instructions to set up your FeedBurner account.
All you have to do then is set your application to display the links to your feeds through the FeedBurner server. Your feeds’ URLs should look like:
http://feeds2.feedburner.com/something
There are FeedBurner extensions available for the most popular CMS applications:
- If you want to set up WordPress to display its feeds with FeedBurner, you can use the FeedBurner FeedSmith plugin or a similar extension.
- If your website is created with Joomla, you can choose one of the many available modules and components that allow you to use FeedBurner. For more information and download links, check the official Joomla extensions directory.
- In case you use Drupal, you can use the FeedBurner module to display your feeds with FeedBurner.
How to disable comments in Drupal
Very often Drupal (especially outdated versions) has problems with Spam bots which flood its comment modules.
The first thing to do in this case is to disable the comments modules until you clean all the Spam posts.
This can be done in two ways:
If you have admin access to Drupal log in and go to Administer – Content – Content Types. Then edit the content type of your choice and make sure comments are set to off by default.
Alternatively the above can be done directly by executing the following query in your database:
UPDATE system SET status = ’0′ WHERE filename = ‘modules/comment/comment.module’;
When you decide to re-enable the module simply issue the reverse query:
UPDATE system SET status = ’1′ WHERE filename = ‘modules/comment/comment.module’;
A good choice for fighting spam bots is using a captcha module in combination with Akismet. This way you ensure that even if a bot passes your captcha module, Akismet will check the post against a huge spam database. Only after that the post will appear.
Posted in Application Installer