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
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
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