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

[Catalyst] Force server to send data to browser....

2006-08-29 Thread Ryan
I'm running a test script from a browser and I need it to provide feedback as it's running but right now if I run it through catalyst it wont send text until the process is done. Is there a way to send stuff as it's running, like forcing the server to send info every so often?

Re: [Catalyst] Chained actions question

2006-08-29 Thread Nilson Santos Figueiredo Junior
On 8/29/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: sub base :Chained('/') PathPart('') CaptureArgs(0) { sub drpt : Chained('base') PathPart('dailystatusrpt') CaptureArgs(0) { sub view_drpt :Chained('drpt') PathPart('view') Args(0) {} sub drpt_year : Chained('base')

Re: [Catalyst] Force server to send data to browser....

2006-08-29 Thread A. Pagaltzis
* Jonathan Rockway [EMAIL PROTECTED] [2006-08-30 03:20]: If you think about it, this is necessary because you can change headers or the body at any time in the request cycle... and you can't unsend data. So what’s `finalize_headers` do? Regards, -- Aristotle Pagaltzis //

Re: [Catalyst] Chained actions question

2006-08-29 Thread Len Jaffe
On 8/29/06, Nilson Santos Figueiredo Junior [EMAIL PROTECTED] wrote: On 8/29/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: sub base :Chained('/') PathPart('') CaptureArgs(0) { sub drpt : Chained('base') PathPart('dailystatusrpt') CaptureArgs(0) { sub view_drpt :Chained('drpt') PathPart('view')

Re: [Catalyst] Wrong Content-Length value BUG?

2006-08-29 Thread k t
Wrong Content-Length value BUG? There is no problem in the test server. I do not think that it is in the bug of CGI version. Is it wrong? ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable

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

[Catalyst] Is this right (Chained actions)

2006-08-29 Thread John Napiorkowski
Hi, I'm giving my first shot at using this chained action thing and I'm not sure if I have this right. If I have a catalyst controller like so: package myapp::templates [...] sub pages :Path Args(0) { [...] } sub page :Chained('/') PathPart('templates') CaptureArgs(1) { [...] } sub

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] Force server to send data to browser....

2006-08-29 Thread Peter Edwards
Is there a way to send stuff as it's running, like forcing the server to send info every so often? Good question, not sure how you'd do it with Catalyst. I've done this before to show output from a lengthy batch program, using CGI.pm, sending the header then the start of the output followed