If you get (or not) a "vocabulary table not found error", change autocategorise.module line 66 from this
$db_result = db_query("SELECT v.vid FROM {vocabulary_node_types} AS t LEFT JOIN vocabulary AS v ON t.vid = v.vid WHERE t.type='".$node->type."'");
to this
$db_result = db_query("SELECT v.vid FROM {vocabulary_node_types} AS t LEFT JOIN {vocabulary} AS v ON t.vid = v.vid WHERE t.type='".$node->type."'");
Note the brackets near JOIN. Without them, drupal can not determine the table prefix. Small typo but fatal :) Fix should be committed I think.
Tx for a great module.
Comments
Comment #1
matslats commentedThis is already in HEAD
v1.3 coming in a few days
Comment #2
matslats commented