Web Hosting Talk







View Full Version : ImageMagick and perl mods


andrewgmol
02-27-2004, 07:01 AM
I have a user experiencing problems with ImageMagick. She says the config wizard can't find the path the various modules.

ImageMagick was installed on the server, but when I click on 'view installed perl modules' from the user cpanel (not WHM) it does not appear in the list. The only image thing installed is:

Image::Size

I re-installed ImageMagick via WHM and rebuilt the RPM database, but it still doesn't show up.

Firstly, am I right to think it should show up in the list, and secondly, how can I check that it has been properly installed?

Any advice much appreciated.

Andrew

Mdot
02-27-2004, 08:19 AM
install imagemagick manually..
cpanel uses it's own perl (RPM's from redhat won't work with perl due to different paths) afaik.
./configure; make; make install; cd PerlMagick; perl Makefile.PL; make; make install

regards,

cactus
02-27-2004, 09:29 AM
Check out the below link.

http://gallery.menalto.com/modules.php?op=modload&name=phpWiki&file=index&pagename=Gallery%20Requirements

Regards

andrewgmol
02-27-2004, 10:28 AM
Thanks to you both.

I just ran mt-check.cgi from one of my Movable Type blogs which outputs this:

Image::Magick...
Your server has Image::Magick installed (version 5.47).

So it's definitely installed. I'm still not seeing it on the list of perl modules in cpanel though.

Is there anything else I can use to check the perl mods installed on the server?

cactus
02-27-2004, 11:02 AM
Install perldiver and below is the link and Howtos:

http://www.scriptsolutions.com/programs/free/perldiver/

Regards

squirrelhost
02-27-2004, 03:05 PM
ImageMagick isn't a perl module - you'd need to have installed PerlMagick also to be able to use ImageMagick with perl scripts.
Latest ImageMagick has PerlMagick bundled with it, but you do need to install this manually, after installing ImageMagick.

andrewgmol
02-27-2004, 03:46 PM
Thanks again.