in reply to Re^2: Installing perl modules
in thread Installing perl modules

The easiest would be to install under cgi-bin (didn't you say that's the only place you can create directories?). But as long as you add use lib '/path/to/some/dir';, it doesn't matter.

No, you can't install any module this way. The module you asked about happens to be pure-perl, and just one source file. But it's not a general installation procedure by any means.

Update:

  1. Create the directory /mnt/web_c/d31/s02/a000ras1/cgi-bin/Tie
  2. Copy IxHash.pm there.
  3. Add the line use lib '/mnt/web_c/d31/s02/a000ras1/cgi-bin'; to your program.
--
edan

Replies are listed 'Best First'.
Re^4: Installing perl modules
by Anonymous Monk on Dec 16, 2004 at 16:59 UTC
    Is this correct:
    use GD; use Tie::IxHash; use lib '/mnt/web_c/d31/s02/a000ras1/cgi-bin';

    I can no install Wiki?
Re^4: Installing perl modules
by Anonymous Monk on Dec 16, 2004 at 16:15 UTC
    Is this correct:
    use GD; use Tie::IxHash; use lib '/mnt/web_c/d31/s02/a000ras1/cgi-bin'; </code>
    I can no install Wiki?