> >
> > BUT, if I remove this I'll get errors that just like my EmbperlObject
> > files can't do Path, or PathNdx or CleanupSession etc.
> >
>
> This normaly happen when the @ISA array is corrupted. Are any of your
> scripts changing the @ISA array ?
>
> When does this happen ? Always ? Sometimes ? If sometimes, could it be that
> another script is always executed before by the same Apache child and
> corrupts the @ISA array ?
>
I localized it. It depends of usage my expressions.
for example
if (@param)
{
foreach $param (@param)
{
my ($name,@value)=split(/\s+/,$param);
$params{$name}=join(' ',@value);
}
}
causes crashes, but
if (@param)
{
foreach $param (@param)
{
($name,@value)=split(/\s+/,$param);
$params{$name}=join(' ',@value);
}
}
works excellent.
Neeme Vool
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]