Ron Goral wrote: > Greetings - > > I am having trouble locating and using modules that are not in the > current directory of a cgi script. For this test, I know the > directory structure looks like this: > > cgi-bin/test/test.cgi > cgi-bin/lib/DGStanLib.pm
Why not the straightforward: use FindBin; use lib "$FindBin::Bin/../lib"; (lifted directly from the FindBin docs) Or why not allow the sysadmin to place the libs wherever he wants and use a SetEnv directive in the web server config to pass PERL5LIB to the CGI scripts and forego use lib altogether? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>