PDA

View Full Version : Lwp


fooleo
06-30-2002, 08:05 PM
I have a script that requires LWP installed on server. I am pretty sure it is installed on HR. But script will not run entirely. It will load but will not search.

http://absolutefreebies.com/directory/amazon-products-feed.html

their page
http://www.absolutefreebies.com/cgi-bin/amazon_products_feed.cgi?input_mode=none

my page
http://www.race-services.com/cgi-bin/amazon_products_feed.cgi?input_mode=none

El_Nino
07-01-2002, 12:35 AM
Download PerlDiver (http://www.scriptsolutions.com/programs/free/perldiver/) to see if that perl module is loaded on your server.

fooleo
07-01-2002, 12:05 PM
This is equal to PERL DRIVER

Says that
LWP::Simple
is installed

I think I need this installed by support. I sent in a TT request.


#!/usr/bin/perl
use LWP::Simple;
$test = get("http://www.race-services.com");
print "Content-type: text/html\n\n";
print "$test\n";

Regards,
Julian

eisforian
12-16-2002, 02:51 AM
#!/usr/bin/perl
use LWP::Simple;
$test = get("http://www.race-services.com");
print "Content-type: text/html\n\n";
print "$test\n";


For the record, the above code works for me just fine -- It's been five months since that was posted.