Quote:
Originally Posted by rockergrrl
Did you remember to add a cron to the rss.php file ??
As the instructions say:
Open up your cron manager (in admincp->scheduled tasks -> add scheduled task) and add an entry for rss.php. You should update every hour at the most. The filename for this is ./rss.php.
|
I just downloaded the zip again, where did you see that?
This is what I have in the instructions:
HTML Code:
Copy the files to your web server... keep the same directory structure as in the zip file.
Run the rss_install.php file to setup the RSS script.
If you're upgrading run the rss_upgrade.php file to setup the RSS script.
#### open the /index.php script ####
Find this:
require_once('./includes/functions_forumlist.php');
Add below it:
require_once('./includes/RSS/rss_update.php');
#### open the /forumdisplay.php script ####
Find this:
require_once('./includes/functions_forumdisplay.php');
Add below it:
require_once('./includes/RSS/rss_update.php');
#### open the /admincp/index.php script ####
Find this:
construct_nav_group("$vbphrase[styles] & $vbphrase[templates]", '<hr />');
Add below it:
// Manage Hacks
// by: Andrew Wickham
// LiquidPro Inc.
//
construct_nav_option('RSS News Feed', 'rss_admin.php', '<br />');
construct_nav_group('Hacks');
//
// End Manage Hacks
You're done, thanks for installing the hack.