Re: [Catalyst] Auth tutorial merry-go-round

2008-07-07 Thread Ash Berlin
On 7 Jul 2008, at 09:40, Dermot wrote: Hi, I have been following the tutorial and am stuck in a loop. In my Root controller I have the following sub auto : Private { my ($self,$c) = @_; if ($c-controller eq $c-controller('Login')) { return 1; } if (!$c-user_exists) {

Re: [Catalyst] Auth tutorial merry-go-round

2008-07-07 Thread Dermot
2008/7/7 Ash Berlin [EMAIL PROTECTED]: On 7 Jul 2008, at 09:40, Dermot wrote: What session store and state modules are you using? I know this happens to me when I forget to load up memcached (which is the store module i'm using) -ash These are the plugins I am currently using.

Re: [Catalyst] Auth tutorial merry-go-round

2008-07-07 Thread Dermot
2008/7/7 Ash Berlin [EMAIL PROTECTED]: On 7 Jul 2008, at 10:24, Dermot wrote: 2008/7/7 Ash Berlin [EMAIL PROTECTED]: On 7 Jul 2008, at 09:40, Dermot wrote: Yes. You most likely want Catalyst::Plugin::Session::State::Cookie so that the session ID will get stored in a cookie. That's done