Yes, that's right. I did add the view action to Auth->allow in my pagescontroller instead of the * char. But then I get errors, Firefox not being able to load any pages. So I have to add a * to my pagescontroller and then deny access to admin functions such as "add" Strange isn't it?
On 20 feb, 19:15, MST <[email protected]> wrote: > When you use $this->Auth->allow('*') it overrides ACL for ALL of the > actions in the controller. Just change the code to allow only the > actions you want allowed. If you only want to allow the index and > view actions, use this: > > $this->Auth->allow('index', 'view'); > > You will then need to fill your `aros` table with yours groups/users > and `aros_acos` table with the proper permissions for the add and edit > actions to work. > > Here's a site that may help: > http://aranworld.com/article/161/cakephp-acl-tutorial-what-is-it Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
