in reply to Re: Are there ways to resize pic without using CPAN modules
in thread Are there ways to resize pic without using CPAN modules

Thank you very much and I have installed the Imager module using the method you suggested. It seems to work and there is a Imager directory sitting in my home/lib..However, when I put in the

use Imager;

It still give me the 500 error. Do I have to call it differently if I install the module this way? Thanks.

  • Comment on Re^2: Are there ways to resize pic without using CPAN modules

Replies are listed 'Best First'.
Re^3: Are there ways to resize pic without using CPAN modules
by sgifford (Prior) on Jun 18, 2005 at 23:49 UTC
    You need an appropriate use lib line to tell your script where to find the library. Something like:
    use lib '/path/to/your/homedir/lib/perl5';