Re: Registry and mod_include - multiple invocations of a script in an SSI-parsed file

2012-01-05 Thread Brett Lee
Hello, Thought to reboot this query from a couple days ago in hopes of gaining some insight into a solution.  Have added configuration information: Linux - CentOS mod_perl-2.0.4-6.el5 httpd-2.2.3-45.el5.centos perl-5.8.8-32.el5_5.2 /usr/lib/perl5/5.8.8/CGI.pm shows version 3.15 Many thanks!

Re: Registry and mod_include - multiple invocations of a script in an SSI-parsed file

2012-01-11 Thread Mårten Svantesson
Hi Brett, My guess is that you run into a problem of the CGI module not resetting itself between executions of your code. As a test you could try entering the line. CGI::initialize_globals(); explicitly in your script before calling param(). 2012-01-02 22:41, Brett Lee wrote: Hello, First,

Re: Registry and mod_include - multiple invocations of a script in an SSI-parsed file

2012-01-11 Thread Dave Hodgkinson
On 11 Jan 2012, at 15:29, Mårten Svantesson wrote: > Hi Brett, > > My guess is that you run into a problem of the CGI module not resetting > itself between executions of your code. > > As a test you could try entering the line. > > CGI::initialize_globals(); > > explicitly in your script bef

Re: Registry and mod_include - multiple invocations of a script in an SSI-parsed file

2012-01-11 Thread Brett Lee
http://crypto.brettlee.com/ > > From: Mårten Svantesson >To: modperl@perl.apache.org >Sent: Wednesday, January 11, 2012 3:29 PM >Subject: Re: Registry and mod_include - multiple invocations of a script in an >SSI-parsed file > >Hi Brett