http://www.perlmonks.org?node_id=549208


in reply to Re: Bear is driving?
in thread Bear is driving?

that's really odd - do you have GD installed? since it's wrapped in an eval without any error handling it will fail silently.

if you add ||die $! to the end it will tell you what's wrong.(or replace the eval with a print, then run the output with warnings etc).
oh and i changed the link to the output example.
al

Replies are listed 'Best First'.
Re^3: Bear is driving?
by wazoox (Prior) on May 13, 2006 at 10:19 UTC
    I've added the "or die $!" part, and I have a "no such file or directory in popo.pl at line 6". Uh?
      there's a cleaned up version in my scratchpad using strict and warnings (which scarily enough didn't need that many changes!) which might help find the problem...
      HTH
      al
        Reinstalling GD made it work. Thanks :)