RE: [cgiapp] Plain CGI -> FastCGI

2006-10-26 Thread Dan Horne
You'll need to need to put your code in a while loop (untested as I use CGI::Application::Dispatch, but it should give you the right idea): use WebApp; use CGI::Fast(); while (my $q = new CGI::Fast) { my $webapp = WebApp->new(QUERY => $q); $webapp->run(); } With the first call your code gets

Re: [cgiapp] Plain CGI -> FastCGI

2006-10-26 Thread Daniel Collis-Puro
Cees Hek wrote: > On 10/27/06, Robert Hicks <[EMAIL PROTECTED]> wrote: >> Do I need to do anything to my CA web application to make it run under >> FCGI instead of CGI? I have the FastCGI DLL loaded in my Apache instance >> and I have registered .fgci to be served by it. >> >> Can I just rename my

Re: [cgiapp] Plain CGI -> FastCGI

2006-10-26 Thread Cees Hek
On 10/27/06, Robert Hicks <[EMAIL PROTECTED]> wrote: Do I need to do anything to my CA web application to make it run under FCGI instead of CGI? I have the FastCGI DLL loaded in my Apache instance and I have registered .fgci to be served by it. Can I just rename my index.cgi to index.fcgi and aw