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

How about if I don't have shell access?

Replies are listed 'Best First'.
Re: Re: Re: Local Module Usage
by valdez (Monsignor) on Jun 24, 2003 at 10:19 UTC

    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

      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\