How can I set Perl's inclusion path for modules for a CGI script? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T13:40:34Z http://stackoverflow.com/feeds/question/355267 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355267/how-can-i-set-perls-inclusion-path-for-modules-for-a-cgi-script 2 How can I set Perl's inclusion path for modules for a CGI script? zoul http://stackoverflow.com/users/17279 2008-12-10T06:41:47Z 2008-12-10T15:06:33Z <p>Hello! I’ve got several Perl modules installed on my hosting machine in <code>~/perl</code>, how do I add them to Perl module path? Setting <code>PERL5LIB</code> or <code>unshift</code>ing the paths to <code>@INC</code> surely works, but the environment variable does not help when running as a CGI script and the <code>@INC</code> way is not very portable. Is there a better way? This has to be a common problem, am I missing something?</p> http://stackoverflow.com/questions/355267/how-can-i-set-perls-inclusion-path-for-modules-for-a-cgi-script/355293#355293 5 Answer by Kent Fredric for How can I set Perl's inclusion path for modules for a CGI script? Kent Fredric http://stackoverflow.com/users/15614 2008-12-10T06:57:55Z 2008-12-10T07:04:47Z <p>A cleaner way to do it imo is :</p> <pre><code>use lib "/path/" ; </code></pre> <p>there are other interesting and good ways to do it that can be found here: </p> <p><a href="http://www.slideshare.net/pfig/cpan-training-presentation/" rel="nofollow">http://www.slideshare.net/pfig/cpan-training-presentation/</a></p> <p>Also, re: CGI scripts, you CAN define PERL5LIB paths for your CGI Env, it just depends on your webhost. </p> <p>Some Webhosts permit specific control of env variables for the CGI Enviroment, and you have to just set them, others may have a "permit" list that allows variables visible at start time appear in local scope. </p> <p>May help to read up on how to do this on your specific HTTP server. </p> <p>There is one more option, if setting ENV is not to your taste: <a href="http://search.cpan.org/~mstrout/local-lib-1.002000/lib/local/lib.pm" rel="nofollow">local::lib</a></p> <p>Which searches some predefined paths automatically. </p> http://stackoverflow.com/questions/355267/how-can-i-set-perls-inclusion-path-for-modules-for-a-cgi-script/356378#356378 4 Answer by brian d foy for How can I set Perl's inclusion path for modules for a CGI script? brian d foy http://stackoverflow.com/users/8817 2008-12-10T15:05:56Z 2008-12-10T15:05:56Z <p>PERL5LIB works just fine for CGI scripts. You just have to set the variable in the right place, such as the server configuration. Which webserver are you using? For Apache, I use the <a href="http://httpd.apache.org/docs/1.3/mod/mod_env.html" rel="nofollow">SetEnv</a> directive from mod_env.</p> <p>@INC is portable. The paths you put in there may not be the same on every machine, but you shouldn't have a problem the with variable itself. </p> <p>Have you read the FAQ entries in <a href="http://faq.perl.org/perlfaq8.html" rel="nofollow">perlfaq8</a>:</p> <ul> <li><a href="http://stackoverflow.com/questions/355267/how-can-i-set-perls-inclusion-path-for-modules">How do I add the directory my program lives in to the module/library search path?</a></li> <li><a href="http://faq.perl.org/perlfaq8.html#How_do_I_add_the_dir" rel="nofollow">How do I add a directory to my include path (@INC) at runtime?</a></li> </ul>