in reply to Re: Re: Local Module Usage
in thread Local Module Usage

Put the files on the server using ftp :) I had the same problem and solved it installing HTML::Template (and File::Spec which was required and not present as well) in a local directory; then I uploaded all the files using ftp. It worked like a charm :)

Ciao, Valerio

Replies are listed 'Best First'.
Re: Re: Re: Re: Local Module Usage
by Anonymous Monk on Jun 24, 2003 at 13:33 UTC

    I was just trying this. So would I just place them in directories like ./modules/HTML/Template.pm and then use lib './modules/'; ? Is there anything more to it? Thanks

      I would actually recommend using:

      use FindBin; use lib "$FindBin::Bin/modules";
      As you will find that some systems don't give you the current directory you thought you had.

      /J\