Quote:
Originally Posted by ROTPAR
Didn't help, sorry  that is really weird and I dont understand why vbulletin gives my only minutes values.
|
Hmm..OK, there may be some other check somewhere. I'll have to look around more.
As for the other issue, What I told the guy is this: In file includes/cron/rssposter.php, around line 453, I made this change (add the curly brace in red, delete the one in blue on the last line):
Code:
}
if (!empty($feeds))
{
// update lastrun time for feeds
$vbulletin->db->query_write("
UPDATE " . TABLE_PREFIX . "rssfeed
SET lastrun = " . TIMENOW . "
WHERE rssfeedid IN(" . implode(', ', array_keys($feeds)) . ")
");
}
}
I don't remember the reasoning behind it, and I don't know exactly what your problem is, so I don't know if this will fix it. But I think it had something to do with the fact that if a feed has a problem, the original code will just keep trying that feed over and over. This change makes it update the feed check time so that it will cycle through the other feeds instead of getting stuck on one.