Hi Nathan,

> ##
> use base qw(CGI::Application::FastCGI);
> ##


I suggest that you skip using CGI::Application::FastCGI because of the
bug in the RT queue
http://rt.cpan.org/Public/Dist/Display.html?Name=CGI-Application-FastCGI

Instead I recommend that you use the following template for your Fast
CGI script:

use CGI::Fast;
use My::Module;

while ( my $q = CGI::Fast->new ){
    my $app = My::Module->new( QUERY => $q );
    $app->run();
}


Clayton

--

Clayton Scott
[email protected]

#####  CGI::Application community mailing list  ################
##                                                            ##
##  To unsubscribe, or change your message delivery options,  ##
##  visit:  http://www.erlbaum.net/mailman/listinfo/cgiapp    ##
##                                                            ##
##  Web archive:   http://www.erlbaum.net/pipermail/cgiapp/   ##
##  Wiki:          http://cgiapp.erlbaum.net/                 ##
##                                                            ##
################################################################

Reply via email to