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 | |
by gloryhack (Deacon) on May 24, 2006 at 06:04 UTC |