On Wed, 17 Sep 2003, Steve Hay wrote:
> Stas Bekman wrote:
> >
> > Steve Hay wrote:
> > > I tried running "perl t/SMOKE" but I just get this:
> > >
> > > =
> > > C:\Temp\modperl-2.0>perl t/SMOKE
> > > *** Using random number seed: 1012582729 (autogenerated)
> > > ***
> > >
I've had this long standing warning in my application:
Use of uninitialized value in subroutine entry at
/var/vkmlm/perllib/MLM/MLMhandler.pm line 80
And this is what the line was:
my $subr = $r->lookup_uri($uri);
Naturally, $uri is *always* defined, and the warning only shows up
some of t
Sounds gd.
Thanks Randy.
-Message d'origine-
De : Randy Kobes [mailto:[EMAIL PROTECTED]
Envoyé : lundi 29 septembre 2003 02:12
À : Ayhan Ulusoy
Cc : [EMAIL PROTECTED]
Objet : Re: RE : [mp2] PERLIO_K_RAW in apr_perlio.c
On Sun, 28 Sep 2003, Ayhan Ulusoy wrote:
> I am worried abo
Problem:
at the beggining of each request PERL5LIB is prepended to @INC in
reverse order. E.g.:
SetEnv PERL5LIB "one:two:three:four"
results in this:
@INC = ('four', 'three', 'two', 'one', '/usr', '...');
Environment:
Tested with perl 5.6.1, mod_perl 1.27 and 1.28
A patch is