The two modules seem to be doing the same. I've been trying to replicate the bugs reported for both modules, but they both seem to work for me.

Is there anybody that has a bit more experience and able to tell which module does the job best?

Comments

drupaceous’s picture

There is a table in core that is called node_access.

mysql> select * from node_access;
+-----+-----+-------+------------+--------------+--------------+
| nid | gid | realm | grant_view | grant_update | grant_delete |
+-----+-----+-------+------------+--------------+--------------+
|   0 |   0 | all   |          1 |            0 |            0 |
+-----+-----+-------+------------+--------------+--------------+
1 row in set (0.00 sec)

What is this table for? Can it also be used to implement access control, without the use of contributed modules then?