You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Jet Li <pe...@netnow.cl> on 2000/07/25 23:25:32 UTC

LWP

Hello who can help me to install LWP, 



: What is LWP?

LWP is what the spider runs off of, without it neither the spider nor the
rest of the script will work. To find out if your host supports LWP try
running this quick script, it will give you a yes or no answer


#!/usr/local/bin/perl

print "Content-type:text/html\n\n";

if (eval "require LWP::Simple"){

print "LWP is installed and operational :)\n";

}else{

print "LWP is not installed and can't be used :(\n";

}



LWP can be obtained from
http://www.perl.com/CPAN-local/modules/by-module/LWP/
, go2cgi will not install LWP is you do not have it, you'll have to have
your host do it for you or handle it yourself.