in reply to Re: mod_perl and modules (Or "how do I import subs into my PerlHandler module)
in thread mod_perl and modules (Or "how do I import subs into my PerlHandler module)

Try removing the our as @ISA and @EXPORT are special variables and are not related to the package scope..
package QMM::photo::qmm_photo ; use strict; use Exporter; use DBI; use lib "/home/loic/server" ; @ISA = ('Exporter'); @EXPORT = qw( get_usr_params );
Hope it Helps
UnderMine
  • Comment on Re: Re: mod_perl and modules (Or "how do I import subs into my PerlHandler module)
  • Download Code