in reply to Image::Magick Crashing Server

<2 cents>

To be honest, if I saw that problem, I would first test the old perl version

#!/usr/bin/perl use Image::Magick;
if that works, but #!/usr/local/bin/perl causes the crash, you probably built the 2 Perl's differently(like one has threads?). The easiest fix, would be to do a fresh install of Image::Magick using /usr/local/bin/perl; I believe it will search /usr/local/lib first, before /usr/lib for the module. Do a manual install, those rpm installs are probably confusing you. Like are you sure which Perl the rpm installer is using?

If that dosn't work, you may have a different problem, but are jumping to a false conclusion that it is ImageMagick or Perl5.8.8.

</2cents>


I'm not really a human, but I play one on earth. Cogito ergo sum a bum

Replies are listed 'Best First'.
Re^2: Image::Magick Crashing Server
by sstevens (Scribe) on Feb 08, 2008 at 22:14 UTC
    Well I downloaded the latest and greatest ImageMagick source from their site and tried installing it. It make'd fine, but then when I ran a make test it failed 16/18 composite tests. I've been working on this stupid thing all day. I think I'm just going to use GD. By the way, use Image::Magick; does still work for /usr/bin/perl. Thanks for the idea.