I need help with a perl module that I have installed on my web host.
The module came from CPAN cpan.org
The perl module is W3C::LogValidator (1.025) and has been successfully installed on my server.
I have instructions from my host say the following:
Perl modules are collections of functions that allow you to perform tasks in Perl. You will need to install a Perl module before you can use it inside a Perl program.
Note: Modules are installed directly from the CPAN repository.
Location of Your Perl Module(s)
Path: /home/aboul/perl
Using Your Perl Module(s)
You will need to add /home/aboul/perl to the include path.
You can do this by adding the following code to your script:
perl Code:
BEGIN {
my @user_include;
foreach my $path (@INC) {
if ( -d $homedir . '/perl' . $path ) {
push @user_include,
$homedir .
'/perl' .
$path;
}
}
}
I do not understand what exactly must be done to enable me to use the module.
Can anyone help me?
Thank you.
G N781974