Auth::allowedActions appear seriously messed up

2008-05-13 Thread b logica
cake_1.2.x.x_6590 cache disabled Auth has suddenly begun redirecting me to the login screen whenever I try to access a particular controller. I've tried backing out a bunch of changes (none of which has anything remotely to do with authentication) without any success. After a fruitless search,

Re: Auth::allowedActions appear seriously messed up

2008-05-13 Thread Chris Hartjes
On Tue, May 13, 2008 at 10:36 PM, b logica [EMAIL PROTECTED] wrote: function beforeFilter() { parent::beforeFilter(); //$this-Auth-allow('admin_index', 'index', 'view', 'search', 'alpha', 'getAlphaList'); $this-Auth-allow('*'); } If you are allowing every

Re: Auth::allowedActions appear seriously messed up

2008-05-13 Thread b logica
No, the wildcard was added after I started trying to figure out why Auth was not allowing me to use *any* action. I only added it to try to debug this. I'm a big dope, though, and the last part of my msg can be ignored. The reason why I was seeing several actions along with the wildcard (when

Re: Auth::allowedActions appear seriously messed up

2008-05-13 Thread b logica
Sorry, to clarify on your last bit: it's only this one controller. Any action. I assume, given that the spooky part was my own dope-headeness, that this is also due to some other dumb thing i've overlooked. It certainly doesn't seem as bizarre as I'd first thought. Just really frustrating. On