The module fails to access the "nodeaccess" table. Is is due to the bug in function nodeaccess_node_access_records in the nodeaccess.module file.

Apparently, line 391 must be changed from
$result = db_query("SELECT nid, gid, realm, grant_view, grant_update, grant_delete FROM nodeaccess where nid = %d", $node->nid);
to
$result = db_query("SELECT nid, gid, realm, grant_view, grant_update, grant_delete FROM {node_access} where nid = %d", $node->nid);

Comments

Anonymous’s picture

This should not be changed to node_access. It should be in curly brackets, however that should not cause any errors using this module unless you are using table prefixes. Regardless I'll have an update with curly quotes soon. If you do not actually have a nodeaccess table, then you need to run update.php.

Anonymous’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)