Quoting Bryan Coon <[EMAIL PROTECTED]>:
> Each cgi simply calls 'use global;' and then off we go.  However, after
> moving all this stuff into /perl, none of the subs in the custom .pl
> files
> are found, I get a complaint:
> Undefined Subroutine &Apache::ROOT::compar_2ecgi::checkUser called at

See http://perl.apache.org/guide/porting.html#Name_collisions_with_Modules_and

The short answer is that all of your required files need to declare a package
name, and then you can either use the full name to access their functions or
have them export the function names.

- Perrin

Reply via email to