in reply to Perl library include path
You can add the path to your scripts:
use lib '/usr/lib/perl5/vendor_perl/5.10';
Setting the $PERL5LIB environment variable is another option, but I'm not sure it's available for nobody. It might be configurable via the web server, e.g. in Apache, you'd add something like the following to the .htacces:
SetEnv PERL5LIB /usr/lib/perl5/vendor_perl/5.10
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl library include path
by Anonymous Monk on Jun 12, 2014 at 14:31 UTC | |
by perlfan (Parson) on Jun 12, 2014 at 15:43 UTC |