From Achievo/ATK Wiki
- added the comment 'Be careful not to use the same text for the mainmenu item and the submenu item.', and changed code accordingly. Using both 'users' as main menu item and submenuitem resulted in a segmentation fault error.
- Added a note after the access table SQL code that the "node" and "action" columns in the "access" table must be exactly as shown (including case) along with a description of what happens if you change them, so people will recognize their mistake easily.
- by User:Agx - IMPORTANT: if you didn't installed the samples data you many need the db_sequence table in order to make the RBAC system to work:
CREATE TABLE db_sequence (
seq_name varchar(100) NOT NULL default ,
nextid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (seq_name)
TYPE=MyISAM;