From: <an...@io...> - 2005-07-04 00:03:45
|
Is there a reason why OI uses FCGI instead of CGI::Fast? I started experimenting with FastCGI again and experienced some odd things like CGI not reseting its POST parameters. These problems seem to have disappeared when I switched to CGI::Fast. My fastcgi loop is while ( my $c = CGI::Fast->new() ) { and I create request: my $request = OpenInteract2::Request->new( { cgi => $c } ); Interestingly OpenInteract2::Request::CGI already contains the code for this to work as it should.. So... What's going on? =) - Antti |