New Extension: tagthis-1.08.zip
[vanilla-miry.git] / extensions / FeedPublisher / readme.txt
blobe8a30f464caf94d92ce771cdb48c63f10427f532
1 ===================================
2 EXTENSION INSTALLATION INSTRUCTIONS
3 ===================================
6 YOU MUST MANUALLY CONFIGURE categories_config.php.php FOR THIS ADD-ON TO WORK!!!
9 In order for Vanilla to recognize an extension, it must be contained within it's
10 own directory within the extensions directory. So, once you have downloaded and
11 unzipped the extension files, you can then place the folder containing the
12 default.php file into your installation of Vanilla. The path to your extension's
13 default.php file should look like this:
15 /path/to/vanilla/extensions/FeedPublisher/default.php
17 Once this is complete, you can enable the extension through the "Manage
18 Extensions" form on the settings tab in Vanilla.
21 UPGRADE INSTRUCTIONS
23 from 0.3.0 to 0.3.2 and intermediates
24 replace default.php
26 from 0.2.0 to 0.3.0
27 replace default.php, functions.php by the new files
28         optional: replace readme.txt and changelog.txt too
29         add
30         <code>
31         /**
32          * Whether to stop Vanilla processing or not
33          *
34          * True will save some resources, while
35          * False will allow you to use SimpleCache.
36          */
37         $fp_conf[ 'ExitAfterFeed' ] = false;
38         </code>
39         somewhere in your config.php file
42 HISTORY
44 This extension is the continuation of CrudeRSS, which added functionality
45 to resolve pagination issues and most-recent comment issues with Mark's
46 'RSS2' extension.
48 CrudeRSS added contextual descriptions to the search.php rss title so
49 that users can properly organize their live bookmarks for the search.php
50 rss feeds.
52 Additionally, CrudeRSS completely removed the automatic rss feeds for
53 index.php and manually applied the search.php rss feeds to
54 index.php pages.
56 This was done for two reasons.
57 1) the search.php rss feeds contain content that is more appropriate for
58    feeds (the most recent comments and replies).
59 2) by manually applying the rss feeds to index.php pages (which includes
60    the "all discussions" page and individual category pages) one can,
61    if one chooses, give the urls to FeedBurner and then manually
62    substitute the FeedBurner rss urls into the index.php feeds.
63    This of course is optional, and requires a bit of manual organization.