Written by:David Aldridge5/13/2011 2:05 PM
If you have modules installed in SugarCRM that do not show up in the roles when you go to create one, then try running the following query against the database:select * from acl_actions where deleted=1; This will list any ACLs which have been deleted. This may happen inadvertently when you upgrade a module. To restore them you can use the following command:update acl_actions set deleted=0 where deleted=1;
select * from acl_actions where deleted=1;
update acl_actions set deleted=0 where deleted=1;
0 comment(s) so far...