Re: [Catalyst] ”Non-root configuration” of lighttpd::FastCGI doesn't work with Catalyst-Runtime-5.90002

2011-09-29 Thread Robert Dormer
I have recently had a similar issue. You may want to try disabling the "check-local" option in the fastcgi section of your lighttpd configuration. 2011/9/29 荒川則泰 > > Hi, > > I use Catalyst from early days with the lighttpd/FastCGI. > Recently I update a Catalyst-Runtime from 5.80033 to 5.9000

Re: [Catalyst] Using a model class from other class

2011-09-29 Thread Nicholas Wehr
perhaps a simple way: my $rs = $c->model("DB::Group")->all; while (my $group = $rs->next) { for my $user ($ group->users ) { # do stuff } } On Thu, Sep 29, 2011 at 10:04 AM, linuxsupport wrote: > Hi, > > I have a model called DB where I have 3 classes, User, Group, UserGroup >

Re: [Catalyst] Using a model class from other class

2011-09-29 Thread Octavian Rasnita
From: "linuxsupport" > Hi, > > I have a model called DB where I have 3 classes, User, Group, UserGroup > > Now, I have created a resultset for Group ie. > Myapp::Schema::ResultSet::Group > > How can I call User class from Myapp::Schema::ResultSet::Group ? > > For example In Group resultset I a

[Catalyst] Using a model class from other class

2011-09-29 Thread linuxsupport
Hi, I have a model called DB where I have 3 classes, User, Group, UserGroup Now, I have created a resultset for Group ie. Myapp::Schema::ResultSet::Group How can I call User class from Myapp::Schema::ResultSet::Group ? For example In Group resultset I am working with some groups and want to fet

[Catalyst] load_components - search_extra

2011-09-29 Thread Geovanny Junio
Hi, I'm newer on mailing list ( subscribe yesterday ) and I found this on archives http://lists.scsys.co.uk/pipermail/catalyst/2011-July/027397.html . There are plans to deprecate search_extra functionality of load_components()? Thanks, -- Geovanny Junio

[Catalyst] ”Non-root configuration” of lighttpd::FastCGI doesn't work with Catalyst-Runtime-5.90002

2011-09-29 Thread 荒川則泰
Hi, I use Catalyst from early days with the lighttpd/FastCGI. Recently I update a Catalyst-Runtime from 5.80033 to 5.90002, and find my application stop to work correct. When I access 'http://my_server/myapp/', I got a "page not found" page. There is an inconsistency of URL handling between two v