Hi monks My problem is that i get an error:

Missing base argument at C:/Perl/site/lib/HTTP/Response.pm line 93

The code around where it points me to in that module is

if ($req) { # if $base is undef here, the return value is effectively # just a copy of $self->request->uri. return $HTTP::URI_CLASS->new_abs($base, $req->uri); }

My problematic code is:

my $url_name; my $base_url = "http://www.perlmonks.com/"; for (my $c = 0; $c<=$rowcount; $c++) { $webcrawler->get($url_name); my @links = map { $_->[0] } $webcrawler->links; # get Links my $ext1 = ".pdf"; my $ext2 = ".doc"; my $ext3 = ".ps"; my $ext4 = ".txt"; @links = map { URI->new_abs( $_, $base_url ) } @links; @links = map { /^$base_url/ ? $_ : () } @links; @links = grep(!/$ext1|$ext2|$ext4|$ext3$/, @links);

There is more code but am pretty certain the fault comes from somewhere in here. I can't figure out the problem. Can anyone help? Thanks for looking


In reply to Strange error from Response.pm by lampros21_7

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.