in reply to Perl ImageMagick

If you have shell access do this:
locate Magick.pm
You'll get output of where it is. - likely. This may spit something out like /usr/lib/wrongplace/Image/Magick.pm Then add to your script:

#!/usr/bin/perl -wT use strict; use lib '/usr/lib/wrongplace'; use Image::Magick;

That may work.
You shouldn't *have* to do that.. It should be in the right place. but.. it's quicker then waiting for some wanker with root access to fix it. Use another ISP. Maybe?

Replies are listed 'Best First'.
Re^2: Perl ImageMagick
by Anonymous Monk on May 23, 2006 at 17:30 UTC
    Unfortunately I don't have root access into my account, but I am about to take the other option, going for another ISP.
      #!/usr/bin/perl use strict; use warnings; print "Content-type: text\/plain\n\n"; `locate ImageMagick`;

      Save that as a CGI in your account space, hit the appropriate URL, see what it says. Or go whole hog and install perldiver.