Tags
RSS External Feed Application
Reviews
Bring external RSS feeds to your Nova installation
Compatibility
- Nova 2.7
- This add-on may work with Nova 2.7, but members of the community haven’t confirmed
- Nova 2.6
- This add-on may work with Nova 2.6, but members of the community haven’t confirmed
Version Info
2.0.2
Last updated
Install instructions
Install Instructions
The following application will add the ability to pull RSS external feeds to your Nova management system. To install this application you need to perform the following steps.
-
Upload the application/cache directory to your application folder.
-
Upload application/config/external_rss.php to your application/config folder of your Nova install. Configure your MOD settings in this file.
-
Upload application/controllers/sim.php to your application/controllers folder of your Nova install replacing the existing one if you haven't already modified this file. If you already have changes in this file, it's best that you just take the contents of this file and add it into your existing sim.php file.
-
Add the following line into your app_lang.php for your associated language(s) after the rest of the includes and before the Global items.
/* include RSS External Feed Language file */
include_once APPPATH .'language/'. $language . '/rss_lang.php';
-
Upload application/language/english/rss_lang.php to your application/views/language/english folder of your Nova install. Translate this page into other languages and upload them to the appropriate language directories. (If you would like your language included into a future release, please contact me via email.)
-
Upload application/libraries/Lastrss.php to your application/libraries folder of your Nova installation.
-
Upload application/views/_base_override/main/pages/sim_logarchive.php to your application/views/_base_override/main/pages folder of your Nova install.
-
Log into your Nova management system and add a RSS menu item so your users can access your RSS page. You will use the link of sim/logarchive when you create the menu item.
If you experience any issues please submit a bug report on http://github.com/demonicpagan/Nova-External-RSS-Feed/issues.
Release notes
Changelog - Dates are in Epoch time
1351502418:
- Fixed an issue where what you set for the limit of items wasn't being taken into account.
1328663634:
- Updating files to be compatible with Nova 2.0.1
1307991373:
- Updated application/language/english/rss_lang.php to refelect the correct file the language file was for on line 6.
1272514948:
- Created a more readable README for GitHub.
1271983178:
- Changed the RSS Parser library from SimplePie to lastRSS. SimplePie has too many incompatibilities with PHP5 causing pages to be unreachable thus resulting in blank pages if running on Firefox and connection errors in Chrome and Internet Explorer.
- Added a cache directory for transparent caching of rss feeds.
1271775224:
- Fixed the blank screen issue, was an error in the model file where I forgot to rename the class so a class was being called twice (THANK YOU PHP ERROR REPORTING!).
- Found error in sim.php as to why the feed wasn't being displayed.
- Added Site URL option to admin to separate it from the Feed URL updated the SQL file to accommodate this.
- Updated SimplePie library to the latest version from SimplePie.org
1271763038:
- Started work on RSS External Feed MOD for Nova. Currently a bug in applications/controllers/site.php causing a blank screen.