right then just so that i dont mess things up
I take it the
Code:
'113' => array('tutorials'),
gones somewhere in the code below, i just need you to point exactly where please
Code:
/* auto tag thread with forum id and keyword
* $config['replycount'] = 10; // auto tag condition: the thread's replycount>10
* $config['views'] = 300; // auto tag condition: the thread's views>300
* example
'14' => array('vancouver'),
'15' => array('toronto'),
* */
function autotaglist()
{
$fields = array(
);
return $fields;
}
?>
Quote:
Originally Posted by devguru
say , i see you have a tutoria forum in your forums, forum id is 113, you want to this tools tag all the thread that replycount>10 , views > 300 with 'tutorials' keyword'
you have to edit function autotaglist(), add
'113' => array('tutorials'),
to $fields arrary .
then run command 'php auto_tag.php'
|