in reply to cronjobs and perl

Apart from what others have said, if you are using libraries from non-standard places, you may have to set the PERLLIB or PERL5LIB environment library before calling your script in the crontab entry (or add the appropriate use lib pragma to your script), like this:
* * * * * PERL5LIB=/your/lib/dir /your/script.pl

--ZZamboni