Closed (duplicate)
Project:
Taxonomy Access Control
Version:
7.x-1.0-rc1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Jun 2012 at 20:08 UTC
Updated:
2 Jan 2013 at 06:41 UTC
_taxonomy_access_term_options was found in the system and field_config tables. This created the following error:
Fatal error: Call to undefined function _taxonomy_access_term_options() in C:\xampp\htdocs\dcc_devel\modules\taxonomy\taxonomy.module on line 1377
To clean this up, I ran the following code:
DELETE FROM `system` WHERE `filename`='sites/all/modules/contrib_modules/taxonomy_access.module' LIMIT 1;
DELETE FROM `field_config` WHERE `type`='taxonomy_term_reference'These entries should be cleaned up upon module uninstall, however, they were not.
Comments
Comment #1
fogus commentedActually, don't do that bulk delete on field_config. You will lose your fields. What you want to do is go through the data field on the "field_owner" entry and find where it says:
And change that to this:
Comment #2
pixelsweatshop commentedDup of #1549900: Uninstalled Taxonomy Access and now forum topics can't post. See that issue for steps to fix.