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

Comments

wpanssi’s picture

Category: support » bug

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..

wpanssi’s picture

Priority: Normal » Critical

I had to take my site offline because of this. Any help appreciated! Thanks!

christefano’s picture

druvision’s picture

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)