BlogItRSS
This recipe is not required with newer versions of BlogIt -- since BlogIt 1.6.0, RSS Feed configuration is now built into BlogIt.
Questions answered by this recipe
- I'm using BlogIt. How can I easily have RSS newsfeeds created for my blog?
Description
Until now, BlogIt lacks the support of RSS feeds. Although there is a workaround for it, this is not the optimal solution: The configuration is quite complex and the RSS feeds created are not in sync with your blog entries when you delete some of them.
This small cookbook provides a better option for creating RSS feeds for your blog. You can easily install it and there are only two configuration options you will need.
This cookbook might be integrated into future releases of BlogIt and therefore become obsolete.
Notes
Download & Installation
- Download blogit-rss.zipΔ
- Extract the ZIP-Archive to your PmWiki-Installation. Now there should be a file called
blogit-rss.php
in thecookbook/
directory. - Enable and set up BlogIt-RSS by adding these lines to your
local/config.php
file after you have included the BlogIt-Script:
//RSS for BlogIt (always add these lines AFTER you have included the BlogIt //script!) // Define a page under which the RSS feed will be available. This page does not // have to exist, it is just for the RSS feed URL, which will be like: // http://yoursite.com/index.php/Newsfeeds/Blog $bi_RSSPage = 'Newsfeeds.Blog'; // Enter the group in which your blog entries are always posted. $bi_RSSGroup = $bi_DefaultGroup; include_once("$FarmD/cookbook/blogit-rss.php");
You are ready! Now your newsfeed will be available at http://yoursite.com/index.php/Newsfeeds/Blog
Release notes
- 2010-06-24: First release
See also
Contributors
Comments
Fix 2010-08-17: replace the line $_REQUEST['group'] = "Blog"; with $_REQUEST['group'] = $bi_RSSGroup; than it works.
User notes? : If you use, used or reviewed this recipe, you can add your name. These statistics appear in the Cookbook listings and will help newcomers browsing through the wiki.