Re: Subroutine xxx redefined
On Fri, 2006-10-20 at 19:00 +0200, Bart van Kuik wrote:[color=blue]
> I'm using Apache::PerlRun to run my Perl scripts. I'm getting the
> following error:
>
> Subroutine xxx redefined at /path/to/sirq.pl line 100.
> Subroutine xxy redefined at /path/to/sirq.pl line 200.
> Subroutine xxz redefined at /path/to/sirq.pl line 300.[/color]
You probably have the same package name in multiple scripts with the
same sub names. See
[url]http://perl.apache.org/docs/1.0/guide/porting.html#Name_collisions_with_Modules_and_libs[/url]
- Perrin