in reply to Which dir to upload custom perl modules to?

It doesn't really matter where you put the modules, as long as your scripts can find them. You probably do not want them in your cgi directory. The scripts in the cgi directory should have this line in them:

use lib qw(/usr/home/kiat/modules);

  • Comment on Re: Which dir to upload custom perl modules to?

Replies are listed 'Best First'.
Re: Re: Which dir to upload custom perl modules to?
by kiat (Vicar) on Apr 21, 2004 at 05:07 UTC
    Cool, it's exactly the kind of info I was looking for. Thanks :)