M
Mark
Hello.
My web site recently began spitting out a stream of errors to the error log:
[Thu Jan 19 19:10:40 2006] gen_page.pm: Use of uninitialized value in hash
element at /usr/lib/perl/5.8/lib.pm line 59.
[Thu Jan 19 19:10:40 2006] jpg.pm: Use of uninitialized value in hash
element at /usr/lib/perl/5.8/lib.pm line 59.
For some reason, the LIB module is unhappy with me. It breaks on the
following line:
@INC = grep { ++$names{$_} == 1 } @INC;
I have tried several variations of the statement that passes my private
module path to the LIB module:
use lib "/home/username/sitename.com/cgi-bin";
use lib q(/home/username/sitename.com/cgi-bin);
use lib qq(/home/username/sitename.com/cgi-bin);
All result in the same error.
Any suggestions?
Thanks
-Mark
My web site recently began spitting out a stream of errors to the error log:
[Thu Jan 19 19:10:40 2006] gen_page.pm: Use of uninitialized value in hash
element at /usr/lib/perl/5.8/lib.pm line 59.
[Thu Jan 19 19:10:40 2006] jpg.pm: Use of uninitialized value in hash
element at /usr/lib/perl/5.8/lib.pm line 59.
For some reason, the LIB module is unhappy with me. It breaks on the
following line:
@INC = grep { ++$names{$_} == 1 } @INC;
I have tried several variations of the statement that passes my private
module path to the LIB module:
use lib "/home/username/sitename.com/cgi-bin";
use lib q(/home/username/sitename.com/cgi-bin);
use lib qq(/home/username/sitename.com/cgi-bin);
All result in the same error.
Any suggestions?
Thanks
-Mark