Re: Has Perl extra memory!?

2002-09-30 Thread Robin Cragg
Sounds like a mod_perl problem. If you are using Apache::Registry apache will compile your script once and just keep running it until the child process dies. This means that any global variables you pass to it will stay in scope. How is your script being called? R At 17:45 30/09/2002 +0200,

Re: Has Perl extra memory!?

2002-09-30 Thread Damien Delhomme
t;[EMAIL PROTECTED]> To: "Damien Delhomme" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, September 30, 2002 5:52 PM Subject: Re: Has Perl extra memory!? > Sounds like a mod_perl problem. If you are using Apache::Registry apache > will compile your scr

Re: Has Perl extra memory!?

2002-09-30 Thread Janek Schleicher
Damien Delhomme wrote at Mon, 30 Sep 2002 18:48:01 +0200: > The only modules I use are : > > use CGI; > use DBI; > use HTML::Template; > use Data::Dumper; > > (I am not the original programmer, I'm trying to make it work!) > > My script is called by a file .xml with : > > I don't know much

Re: Has Perl extra memory!?

2002-09-30 Thread Damien Delhomme
> > My script is called by a file .xml with : > > > > > > I don't know much about this xml feature, > but I could imagine that it works like a calling from the command line. > > In this context, the CGI module will (perhaps) try to read the parameters > from STDIN, what should really block your

Re: Has Perl extra memory!?

2002-10-01 Thread Janek Schleicher
Damien Delhomme wrote at Mon, 30 Sep 2002 23:53:20 +0200: >> > My script is called by a file .xml with : >> > >> > >> >> I don't know much about this xml feature, >> but I could imagine that it works like a calling from the command line. >> >> In this context, the CGI module will (perhaps) try t

Re: Has Perl extra memory!?

2002-10-01 Thread Mat Harris
i agree, it saounds like a mod_perl caching problem. you can find out if you are running mod_perl or not by running this little script through apache: #!/usr/bin/perl print "Content-type: text/html\n\n"; while (($key,$value) = each %ENV) { print "$key=$value"; } And loo

Re: Has Perl extra memory!?

2002-10-01 Thread Damien Delhomme
I am definitely running the script through mod_perl. I was pretty sure about it and your script confirmed it. (see environment.txt) Now I know this, what can I do about it? Ti Bruno -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Has Perl extra memory!?

2002-10-01 Thread Damien Delhomme
sorry - Original Message - From: "Damien Delhomme" <[EMAIL PROTECTED]> To: "Perl ml" <[EMAIL PROTECTED]> Sent: Tuesday, October 01, 2002 5:39 PM Subject: Re: Has Perl extra memory!? > I am definitely running the script through mod_perl. I was pre

RE: Has Perl extra memory!?

2002-10-01 Thread Bob Showalter
> -Original Message- > From: Damien Delhomme [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 30, 2002 11:45 AM > To: [EMAIL PROTECTED] > Subject: Has Perl extra memory!? > > > Hi everybody! > > One of my program generates a HTML formulary whose number of > checkboxes fluctuates

Re: Has Perl extra memory!?

2002-10-02 Thread Damien Delhomme
'Damien Delhomme'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 01, 2002 9:05 PM Subject: RE: Has Perl extra memory!? > > > > -Original Message- > > From: Damien Delhomme [mailto:[EMAIL PROTECTED]] > > Sent: Monda