|
Cookbook /
BlogItRSSSummary: BlogItRSS - Easily create RSS feeds for your blog.
Version: 1.00
Prerequisites: pmwiki-2.2.14+, BlogIt
Status: Stable
Maintainer: MKonrad
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
DescriptionUntil 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. NotesDownload & Installation
//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
See alsoContributorsCommentsFix 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. |