http://qs321.pair.com?node_id=190115

Foncé has asked for the wisdom of the Perl Monks concerning the following question:

Here's the situation: I want to use two modules, HTTP::CalendarMonthSimple and Date::Calc (required for the other) for a calendar programme I'm completely revamping. I have FTP access only to my webserver, so I uploaded those two modules (the .pm files) to the webserver under the directory /usr/local/etc/httpd/cgi-bin/calendar/modules and put Calc.pm into /usr/local/etc/httpd/cgi-bin/calendar/modules/Date like it wanted to be. They are called like thus:
use Date::Calc qw(:all);
use HTML::CalendarMonthSimple;

...and I get the following error:
[Wed Aug 14 10:33:55 2002] Calc.pm: [Wed Aug 14 10:33:55 2002] DynaLoader.pm: Can't locate loadable object for module Date::Calc in @INC (@INC contains: /usr/local/etc/httpd/cgi-bin/calendar/modules /usr/lib/perl5/5.00502/i686-linux /usr/lib/perl5/5.00502 /usr/lib/perl5/site_perl/5.005/i686-linux /usr/lib/perl5/site_perl/5.005 .) at index.cgi line 6

Any suggestions?

Foncé