in reply to problem with FCGI

People have occasionally observed similar issues when using the CGI.pm module together with FCGI (e.g. Not getting CGI parameters under FastCGI). The problem went away by switching to CGI::Simple in place of CGI.pm.  So that's what I would try first...

Replies are listed 'Best First'.
Re^2: problem with FCGI
by Anonymous Monk on Jan 06, 2011 at 06:05 UTC
    The problem went away by switching to CGI::Simple in place of CGI.pm

    Or simply use CGI::Fast, its part of the CGI distribution, its what you're supposed to use under FastCGI

Re^2: problem with FCGI
by celebithil (Novice) on Jan 07, 2011 at 07:50 UTC
    Thank You! problem solved.