Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Khachaturov, Vassilii
When I upgraded from Solaris Apache/1.3.14 (Unix) mod_perl/1.24_01 to Solaris Apache/1.3.17 (Unix) mod_perl/1.25 the following code in my debugging httpd.conf broke: Perl sub WWW_DIR () { $ENV{'HOME'} . '/www' ; } # this sub will persist to next Perl ... more code, using WWW_DIR sometimes

Re: Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Stas Bekman
On Mon, 12 Mar 2001, Khachaturov, Vassilii wrote: When I upgraded from Solaris Apache/1.3.14 (Unix) mod_perl/1.24_01 to Solaris Apache/1.3.17 (Unix) mod_perl/1.25 the following code in my debugging httpd.conf broke: Perl sub WWW_DIR () { $ENV{'HOME'} . '/www' ; } # this sub will persist

RE: Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Khachaturov, Vassilii
in Apache brains, stealing the precious memory from mod_perl :-). -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 8:39 PM To: Khachaturov, Vassilii Cc: '[EMAIL PROTECTED]' Subject: Re: Perl incompat. with apache/mod_perl upgrade ... Perl sub

RE: Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Stas Bekman
e than carve them in Apache brains, stealing the precious memory from mod_perl :-). -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 8:39 PM To: Khachaturov, Vassilii Cc: '[EMAIL PROTECTED]' Subject: Re: Perl incompat. with apache/mod_p

Re: Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Steve Leibel
At 12:26 PM -0500 3/12/01, Khachaturov, Vassilii wrote: When I upgraded from Solaris Apache/1.3.14 (Unix) mod_perl/1.24_01 to Solaris Apache/1.3.17 (Unix) mod_perl/1.25 the following code in my debugging httpd.conf broke: Perl sub WWW_DIR () { $ENV{'HOME'} . '/www' ; } # this sub will persist

RE: Perl incompat. with apache/mod_perl upgrade

2001-03-12 Thread Khachaturov, Vassilii
And, of course, I am using Stas' patent with 'use constant' now... -Original Message- From: Khachaturov, Vassilii Sent: Tuesday, March 13, 2001 2:19 AM To: 'Steve Leibel' Cc: [EMAIL PROTECTED] Subject: RE: Perl incompat. with apache/mod_perl upgrade I've been planning on doing