Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-09-02 Thread Kieren Diment
On 31/08/06, Jason Kohles [EMAIL PROTECTED] wrote: On 8/30/06, Matt S Trout [EMAIL PROTECTED] wrote: On 30/08/06, Jason Kohles [EMAIL PROTECTED] wrote: On 8/29/06, Matt S Trout [EMAIL PROTECTED] wrote:If somebody could write this up for Engine::FastCGI in the form of a patch I'm sure it

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-30 Thread Jason Kohles
On 8/30/06, Matt S Trout [EMAIL PROTECTED] wrote: On 30/08/06, Jason Kohles [EMAIL PROTECTED] wrote: On 8/29/06, Matt S Trout [EMAIL PROTECTED] wrote: If somebody could write this up for Engine::FastCGI in the form of a patch I'm sure it could ship in 5.7002 I started to, but the

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-29 Thread Andreas Marienborg
I have had this problem since 5.33 I think. just wrote it off as a configuration problem and PEBKAC:) andreas On 29. aug. 2006, at 03.02, Daisuke Maki wrote: I just got bit by this last night with lighttpd + FastCGI and was wondering, too. My quick and dirty fix for lighttpd was $path

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-29 Thread Kieren Diment
On 30/08/06, Jason Kohles [EMAIL PROTECTED] wrote: On 8/29/06, Matt S Trout [EMAIL PROTECTED] wrote: Andreas Marienborg wrote: I have had this problem since 5.33 I think. just wrote it off as a configuration problem and PEBKAC:) If somebody could write this up for Engine::FastCGI in the form

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-29 Thread Mark Blythe
If somebody could write this up for Engine::FastCGI in the form of a patch I'm sure it could ship in 5.7002 If anybody is interested, I've attached the tiny plugin I wrote to solve this issue for Lighttpd. I've been using this for local development for several months. I agree, it'd be

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-28 Thread Mark Blythe
Hey Jason, I think you're having the same problem I had back in June. I was amazed that nobody else seemed to have been having this issue. I guess it just took a few months. :-) Anyway, here's the solution message I posted, which has been working fine for me since then. Take a look and see if

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-28 Thread Christopher H. Laco
I've been asleep at the wheel on this one... handelframework.org is running as FastCGI under Apache... Here's my config in case it helps FastCgiServer /www/handelframework.com/lib/HandelSite/script/handelsite_fastcgi.pl -processes 3 VirtualHost Alias /

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-28 Thread Daisuke Maki
I just got bit by this last night with lighttpd + FastCGI and was wondering, too. My quick and dirty fix for lighttpd was $path = $base_path . ($ENV{PATH_INFO} || $ENV{SCRIPT_NAME} || ''); in Catalyst::Engine::CGI. However, after some sleep and reading other solutions, it does seem that