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

matslats’s picture

This is already in HEAD
v1.3 coming in a few days

matslats’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.