Hi Monks,
Background: We've been running perl5.8.0 on our server for years and have been happily using Image::Magick. We installed perl5.8.8 a short while ago to /usr/local/bin/perl, so we can still use 5.8.0 at /usr/bin/perl and not have to update all of our perl scripts.
Problem: I tried using Image::Magick with 5.8.8 and I was told it wasn't installed. "Duh," I said to myself, and started up CPAN. I tried installing Image::Magick, but CPAN told me Image::Magick was up to date. "WTF? No it isn't! It isn't even installed for 5.8.8!" So I did something I probably shouldn't have done:

force install Image::Magick

It appeared to install with no problems. Yay! However, there are major problems. If I just put this one line in a perl5.8.8 script:

use Image::Magick;

Then my server blows up. It completely runs out of memory and the CPU works at 100%. Has anyone run into this before, or does anyone know how to fix it? If nothing else, I'd like to uninstall Image::Magick from 5.8.8.

Thanks!

In reply to Image::Magick Crashing Server by sstevens

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.