in reply to Re: Not getting CGI parameters under FastCGI
in thread Not getting CGI parameters under FastCGI

Hey, thanks - good to know I'm not just going crazy!
Tried CGI::Simple, and as you say, it works fine. The application I'm trying to use this with uses CGI::Application, so might have to see if I can change that module to use CGI::Simple for now too...hmmm...I'll see how I go.
Cheers
Jay
  • Comment on Re^2: Not getting CGI parameters under FastCGI

Replies are listed 'Best First'.
Re^3: Not getting CGI parameters under FastCGI
by bakerjay (Initiate) on May 25, 2008 at 04:51 UTC
    Actually, turns out my CGI::Application was something entirely different...in trying to reduce it to a test case, I found a new problem! Grr..

    Anyway...main problem was that under CGI::Application::FastCGI, I was not releasing the database connection (was no need under normal CGI, it just released itself...), so then trying to recreate it failed miserably.

    So...thanks for your help, think I'm all sorted now.
    Jay