Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

fatal error: Can't locate time/Local.pm in @INC...

Quote Reply
fatal error: Can't locate time/Local.pm in @INC...
Hi all,
I am reinstalling the Links 2.0 script into another server. Unfortunately I am finding that this server is not accepting certain variables in the Links.cfg

I have no problems with Adding New Categories,
Unfortunately when trying to add a new link I get the following server message.

CGI ERROR
==========================================
Error Message : fatal error: Can't locate time/Local.pm in @INC (@INC contains: /usr/local/etc/httpd/cgi-bin/admin /usr/local/lib/perl5/5.00503/i386-bsdos /usr/local/lib/perl5/5.00503 /usr/local/lib/perl5/site_perl/5.005/i386-bsdos /usr/local/lib/perl5/site_perl/5.005 .) at /usr/local/etc/httpd/cgi-bin/admin/links.cfg line 160.

Script Location : /usr/local/etc/httpd/cgi-bin/admin/admin.cgi
Perl Version : 5.00503

I have made no changes to the links.cfg script related to times or dates.
Links.cfg is also located in the admin directory with the links.cgi.


Please let me know what I should do to correct the error.... the likely piece of the links.cfg file is


# Date Routines
# --------------------------------------------------------
# Your date format can be whatever you like, as long as the following
# two functions are defined &date_to_unix and &unix_to_date:
# The default is dd-mmm-yyyy.

sub date_to_unix {
# --------------------------------------------------------
# This routine must take your date format and return the time a la UNIX time().
# Some things to be careful about..
# timelocal does not like to be in array context, don't do my($time) = timelocal (..)
# int your values just in case to remove spaces, etc.
# catch the fatal error timelocal will generate if you have a bad date..
# don't forget that the month is indexed from 0!
#
my $date = shift; my $i;
my %months = map { $_ => $i++ } qw!Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec!;
my ($day, $mon, $year) = split(/-/, $date);

exists $months{$mon} or return undef;
$day = int($day); $year = $year - 1900;

require time::Local;
my $time = 0;
eval {
$time = &Time::Local::timelocal(0,0,0, $day, $months{$mon}, $year);
};
if ($@) { die "invalid date format: $date - parsed as (day: $day, month: $months{$mon}, year: $year). Reason: $@"; }
return $time;
}

sub unix_to_date {
# --------------------------------------------------------
# This routine must take a unix time and return your date format
# A much simpler routine, just make sure your format isn't so complex that
# you can't get it back into unix time.
#
my $time = shift;
my ($sec, $min, $hour, $day, $mon, $year, $dweek, $dyear, $tz) = localtime $time;
my @months = qw!Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec!;
$year = $year + 1900;
return "$day-$months[$mon]-$year";
}

sub long_date {
# --------------------------------------------------------
# This routine is for printing a nicer date format on the what's new page. It should
# take in a date in your current format and return a new one.
my $time = shift;
$time = &date_to_unix ($time);
my ($sec, $min, $hour, $day, $mon, $year, $dweek, $dyear, $tz) = localtime $time;
my @months = qw!January February March April May June July August September October November December!;
my @days = qw!Sunday Monday Tuesday Wednesday Thursday Friday Saturday!;
$year = $year + 1900;
return "$days[$dweek], $months[$mon] $day $year";

NOTE The server is unix using a Virtual Server
Operating System v6.0.0

Appreciate any assistance


Subject Author Views Date
Thread fatal error: Can't locate time/Local.pm in @INC... kami 4462 Jun 25, 2000, 1:06 AM
Thread Re: fatal error: Can't locate time/Local.pm in @INC...
Stealth 4387 Jun 25, 2000, 10:39 AM
Thread Re: fatal error: Can't locate time/Local.pm in @INC...
kami 4400 Jun 26, 2000, 6:40 AM
Thread Re: fatal error: Can't locate time/Local.pm in @INC...
Stealth 4366 Jun 26, 2000, 8:04 PM
Thread Re: [Stealth] fatal error: Can't locate time/Local.pm in @INC...
felicin 4248 Jan 12, 2003, 12:34 PM
Thread Re: [felicin] fatal error: Can't locate time/Local.pm in @INC...
felicin 4284 Jan 12, 2003, 3:31 PM
Post Re: [felicin] fatal error: Can't locate time/Local.pm in @INC...
Stealth 4267 Jan 12, 2003, 4:35 PM