After installation you’ll have to change cron.php if you want to use automatic feed fetching via crontab.
- take note of the code wp-o-matic will give you on installation.
- open cron.php in your favorite editor
- add this piece of code after the <?php opening tag :
- Save the file
- You’re done
if ($argc > 0)
{
for ($i=1;$i < $argc;$i++)
{
parse_str($argv[$i],$tmp);
$_REQUEST = array_merge($_REQUEST, $tmp);
}
}