>
> What's the best way of including additional directories in @INC? I got
> two directories where I put the Perl modules into that are used by my
> EmbperlObject based site. And having "use lib" in every page feels
> just plain wrong.
>

If you are running under mod_perl, use a startup file which you load via

PerlRequire startup.pl

and add your "use lib" there. You also should use all modules you use in
your page in that startup.pl, because that saves a lot of memory (see
mod_perl_tuning.pod, or the mod_perl guide)

Gerald



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to