[Catalyst] Deploying with apache/fastcgi

2009-12-19 Thread David Schmidt
Hello list I followed the deployment instructions in the cat book to run my app on apache2 with fastcgi. I do get a 500 internal error msg and the appache error log says: [Sat Dec 19 10:25:47 2009] [error] [client 78.142.165.159] FastCGI: incomplete headers (0 bytes) received from server

[Catalyst] Re: Deploying with apache/fastcgi

2009-12-19 Thread David Schmidt
On Sat, Dec 19, 2009 at 11:38 AM, David Schmidt davew...@gmx.at wrote: Hello list I followed the deployment instructions in the cat book to run my app on apache2 with fastcgi. I do get a 500 internal error msg and the appache error log says: [Sat Dec 19 10:25:47 2009] [error] [client

[Catalyst] Re: catalyst request path and apache rewrites

2009-12-19 Thread Aristotle Pagaltzis
* William Wueppelmann william.wueppelm...@canadiana.ca [2009-12-18 14:40]: I have the following rules configured for my virtual host in apache: RewriteCond %{REQUEST_URI} !^/foo/bar RewriteRule ^/(.*)$ /foo/bar/$1 [PT] Btw, this is most probably not going to affect your problem, but anyway,

[Catalyst] Perl code attributes in Moose roles

2009-12-19 Thread Bernhard Graf
Hello, I am writing an admin application based on Cat. Much of it is the typical CRUD stuff, so I had the idea to put that into Roles. This doesn't work - I get Invalid CODE attributes: PathPart(edit) : Chained(root) : Args(0) ... The same problem has been discussed on this list 18 months ago:

Re: [Catalyst] Perl code attributes in Moose roles

2009-12-19 Thread Florian Ragwitz
On Sat, Dec 19, 2009 at 10:51:36PM +0100, Bernhard Graf wrote: I am writing an admin application based on Cat. Much of it is the typical CRUD stuff, so I had the idea to put that into Roles. Is there a solution for this problem yet? Yes, it's referred to from several places in the docs and

Re: [Catalyst] Perl code attributes in Moose roles

2009-12-19 Thread Bernhard Graf
Florian Ragwitz schrieb: Yes, it's referred to from several places in the docs and is called MooseX::MethodAttributes::Role. Ah, thank you! This brings mit directly to my next question. Assume I have this role: package MyApp::Role::Controller::Create; use Mose::Role; sub edit_new

Re: [Catalyst] Multiple deployments sharing code, data, and configuration

2009-12-19 Thread Eden Cardim
Stuart == Stuart Watt sw...@infobal.com writes: Stuart In our application, we have two parts - an indexing system Stuart that builds a set of databases, and a front end based on Stuart Catalyst. The issue we are facing is that each generated Stuart deployment runs almost exactly