Quote:
Originally Posted by eh9 daddy
i have the same problem on vb 3.8 b4
|
Same here on vB 3.7.4
My log looks like this:
4191 Auto Thread Tagger 16:41, 03.12.2008 Auto Thread Tagger processed 0 threads.
4190 Auto Thread Tagger 16:37, 03.12.2008 Auto Thread Tagger processed 2 threads.
But there are many more threads without tags.
Edit:
I think I got it… The default value of taglist is not '0' or empty it is '
NULL' maybe that makes the difference.
So you should change the query in /cron/autotagger.php into this:
PHP Code:
$threads = $vbulletin->db->query_read("SELECT
t.taglist,
t.dateline,
t.forumid,
t.postuserid,
t.title,
t.threadid,
t.prefixid
FROM " . TABLE_PREFIX . "thread AS t
WHERE t.taglist IS NULL AND autoskip=0
");
It results in:
4200 Auto Thread Tagger 16:54, 03.12.2008 Auto Thread Tagger processed 3273 threads.
4199 Auto Thread Tagger 16:54, 03.12.2008 Auto Thread Tagger processed 500 threads.
4198 Auto Thread Tagger 16:53, 03.12.2008 Auto Thread Tagger processed 500 threads.