Re: Woes of ACL

2009-04-06 Thread trevorsg
Unfortunately that did not work for me. I ended up using the check() method in my app_controller to determine access: var $userId = null; function beforeFilter() { if (null != ($this->userId = $this->Auth->user('id'))) {

RE: Woes of ACL

2009-04-06 Thread Dave Maharaj :: WidePixels.com
In your controllers do you have something like: function beforeFilter() { parent::beforeFilter(); $this->Auth->allowedActions = array('register', 'index');// allow public access to these only $this->Auth->autoRedirect = true; } Dave