nodes are still hidden after deletion of module
z3cka - August 15, 2008 - 09:45
| Project: | CCK Field Permissions |
| Version: | 5.x-1.9 |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I was using cck permissions with one content type and then decided to disable and delete this module. Now, no users (beside admin) can see nodes of said content type. they are able to create them, but not access them. Even their own nodes that they created, they are not able to access these and the correct permissions are selected in the access control settings.
Does this module require a special un-installation process? or does it make some changes in the database that need to be reversed for my content type to act normally again.
thanks for your time.
-casey

#1
I'm struggling with same kind of behaviour. I added new field to poll -content type, installed the module, and set permissions to this field. Now I'm not able access ANY new content unless I'm admin. I actually tested every single rule in the access control page and observed that if I added administer nodes -permission to anonymous user, then I'm able to view the content.
Disabling the module didn't help. Since I'm not only one suffering from this problem, I change the category to bug report..
#2
I had to take my site offline because of this. Any help appreciated! Thanks!
#3
Have you tried rebuilding your node permissions?
#4
The module deletes the current node_access record for each edited node.
In my case I've restored it by copying the node_access record of another node.
If the node# of the inaccessible node is 2578, use the following SQL:
insert into node_access (nid, gid, realm, grant_view, grant_update, grant_delete) values (2578,0, 'all', 1, 0,0)