Help for this page

Select Code to Download


  1. or download this
    Use of unitialized value in hash element at F:\Perl\bin\scriptname.pl 
    +line 32.
    Use of unitialized value in hash element at F:\Perl\bin\scriptname.pl 
    +line 32.
    Use of unitialized value in hash element at F:\Perl\bin\scriptname.pl 
    +line 32.
    Can't locate object method "host" via package "URI::_foreign" 
    at F:\Perl\bin\scriptname.pl line 32.
    
  2. or download this
    use strict;  
    use warnings;  
    use HTML::LinkExtor;  
    use URI;  
    use File::Find;
    
  3. or download this
    my $base = 'http://webroothere.com/';
    my %servers;
    ...
               next unless $url->scheme =~ /^http/; 
                                       
               $servers{$url->host}++; #THIS IS THE LINE IT SEEMS TO ERROR
    + ON