Hi,
I have installed WWW-Mechanize-1.60 in Linux platform. Problem is that i am getting this error.
Error GETing http://www.example.com:Can't connect to eutils.ncbi.nlm.nih.gov:80 (connect: timeout)
Here is my code.
use WWW::Mechanize;
$url="http://www.example.com";
$mechanize = WWW::Mechanize->new(autocheck => 1);
$mechanize->get($url);
$page = $mechanize->content;
How can i solve this error?
I am getting this error if i am trying to fetch more data.
Is this method suitable to download large amount of data?
Any other methods to download large amount of data?
Regards
Vanditha