Forum OpenACS Q&A: Re: table-drop error

Error in include template "/var/www/openacs/packages/openacs-bootstrap3-theme/resources/templates/packages/forums/lib/search/search-form": can't read "form:id": no such variable
Collapse
2: Re: table-drop error (response to 1)
Posted by Peter Marklund on
That error message usually means that there are other acs objects with a context_id pointing at the object you are trying to delete. You can find out which objects these are with a query like

select object_type, object_id from acs_objects where context_id in (select object_id from acs_objects where object_type = 'your_object_type');