Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"501 (Not Implemented) Protocol scheme 'http' is not supported" Error

Status
Not open for further replies.

rubis

Programmer
Jun 21, 2001
54
GB
I want to write a perl code to save back HTML files of Web sites in order to analyse them. I first test by using the following code

$ua = LWP::UserAgent->new;
$req = HTTP::Request->new('GET',"$res = $ua->request($req);

if ($res->is_error) {
print $res->as_string;
}

After I run it through CGI, I have got this error

"501 (Not Implemented) Protocol scheme 'http' is not supported"

Pls suggest me how to solve it..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top