in reply to Re: Apache / 30,000 Perl script serving limit
in thread Apache / 30,000 Perl script serving limit

Did anyone have any more time to look at this again. I have a very similar issue and would love to know what caused it in version 2.0.59. I am running HP-UX B.11.31 U ia64. I have tried all of the above suggestions and so far nothing seems to assist with the issue. Regards Ben
  • Comment on Re^2: Apache / 30,000 Perl script serving limit

Replies are listed 'Best First'.
Re^3: Apache / 30,000 Perl script serving limit
by QcMonk (Novice) on May 26, 2009 at 17:56 UTC

    In your httpd.conf, try removing mod_cgi and enable only mod_perl, for us this solved the 30,000 perl script execution limit even on the Apache 2.0 web server, but it can mean that some of your cgi scripts will need to be modified to be compatible with mod_perl. A few of ours required a few 'my $variables' to be changed to 'our $variables'. This porting documentation helped.