Actually, you don't have ImageMagick installed. Additionally, your hosting provider is using some BSD, I would assume FreeBSD. All that is contained in /usr/ports/graphics/ImageMagick are package description files and a Makefile. You should kindly ask your hosting company to do the following:
cd /usr/ports/graphics/ImageMagick
make
sudo make install
After that, you'll need to either install the perl ImageMagick module from cpan in your own directory, or ask your hosting provider to install it for the whole server.
--chargrill
$,=42;for(34,0,-3,9,-11,11,-17,7,-5){$*.=pack'c'=>$,+=$_}for(reverse s
+plit//=>$*
){$%++?$ %%2?push@C,$_,$":push@c,$_,$":(push@C,$_,$")&&push@c,$"}$C[$#
+C]=$/;($#C
>$#c)?($ c=\@C)&&($ C=\@c):($ c=\@c)&&($C=\@C);$%=$|;for(@$c){print$_^
+$$C[$%++]}
| [reply] [d/l] [select] |
| [reply] |
To expand on the above post, how did you go about installing Image::Magick? If installed properly inside that directory, you might be able to use it via:
use lib '/usr/ports/graphics';
---
It's all fine and dandy until someone has to look at the code.
| [reply] [d/l] |
The people at the hosting company did.
| [reply] |
how about use Image::Magick; ? | [reply] [d/l] |