try print B::show(), "\n";
END
--
Philip M. Gollucci (p6m7g8) [EMAIL PROTECTED] 301.314.3118
Science, Discovery, & the Universe (UMCP)
Webmaster & Webship Teacher
URL: http://www.sdu.umd.edu
EJPress.com
Mike McLagan wrote:
> When B is invoked, within the same child, Apache::Registry DOES NOT reload
> CGI.pm and therefore does not initialize any of the variables, etc. This
> results in the new() call in B REUSING (!) the @QUERY_PARAM which was built up
> during the new() call in A! OOOPS!
>
> I
Saying that BEGIN blocks should be re-run on every invocation of the
script in mod_perl is like saying that you must re-start your car every
time you stop even though the engine may still be running. The fact
that BEGIN blocks only execute once per server instance is expected
simply by defini
How can i understand if the date entered by the
client is weekend or no? Are there some database specificied for
that?
funky
On Fri, 8 Feb 2002 17:02:20 + (GMT), Ged Haywood wrote:
>>My message is about data space. The data space for the modules does not
>> seem to be recreated or reinitialized (BEGIN blocks are not rerun) from one
>> invocation of a script to another.
>
>Yes, this is well known to mod_perl
- Original Message -
From: "Ged Haywood" <[EMAIL PROTECTED]>
To: "Gregory Belenky" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, February 09, 2002 12:39 AM
Subject: Re: Segmentation fault
> Hi there,
>
> On Fri, 8 Feb 2002, Gregory Belenky wrote:
>
> > Just found that Apac