Hi!
Thanx for your answer. It seems it is working now, BUT... I run the program
and it doesn't break. But after let's say 6962 URL's checked, it simply
stopped. Not terminated, just stopped and wait. Until I break it.
I tried to check URL at which it stopped, but it works fine. And a couple
URLs before and after that URL too. So it is not a problem of "bad URL".
The problem is that program does not display any error message.
Any help?
======
> my $parser = HTML::LinkExtor->new(undef, $main::base_url);
> $parser->parse(get($main::base_url))->eof;
The error probably shows up because get() returns nothing instead of
undef. I think the following patch should fix the problem:
======
bye, Matej