guaranis
12-11-2005, 04:47 PM
the sort is not working. (when the page rank is disabled)
One way to solve this is to enable the page rank, but in that case your are going to query google for each feed and probably banned if you have a lot of feeds and a cron setup.
Another way, check the index.php and find
if(!ENABLE_PAGERANK || !SHOW_PAGERANK && $sort == 'P')
$sort = 'H';
replace with
if((!ENABLE_PAGERANK || !SHOW_PAGERANK) && $sort == 'P')
$sort = 'D';
This seems to work for me
One way to solve this is to enable the page rank, but in that case your are going to query google for each feed and probably banned if you have a lot of feeds and a cron setup.
Another way, check the index.php and find
if(!ENABLE_PAGERANK || !SHOW_PAGERANK && $sort == 'P')
$sort = 'H';
replace with
if((!ENABLE_PAGERANK || !SHOW_PAGERANK) && $sort == 'P')
$sort = 'D';
This seems to work for me