Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: Use of uninitialized value in subroutine entry at C:/Perl/lib/HTML/TreeBuilder.p m line 108.

by kanthsri (Initiate)
on Dec 26, 2012 at 07:25 UTC ( [id://1010329]=note: print w/replies, xml ) Need Help??


in reply to Re: Use of uninitialized value in subroutine entry at C:/Perl/lib/HTML/TreeBuilder.pm line 108.
in thread Use of uninitialized value in subroutine entry at C:/Perl/lib/HTML/TreeBuilder.p m line 108.

v5.16.1 this is my version of perl and in treebuillder.pm the unitialised value is $new->parse($whunk);
  • Comment on Re^2: Use of uninitialized value in subroutine entry at C:/Perl/lib/HTML/TreeBuilder.p m line 108.

Replies are listed 'Best First'.
Re^3: Use of uninitialized value in subroutine entry at C:/Perl/lib/HTML/TreeBuilder.p m line 108.
by kanthsri (Initiate) on Dec 26, 2012 at 07:30 UTC
    this is the version of treebuilder v5.02

      Line 108 of HTML::TreeBuilder is a call to HTML::TreeBuilder::parse, which (according to lines 1967–8 of the source code) is inherited from HTML::Parser. Parts of that module — including the parse method — are implemented in C, which is compiled for your local machine when you install the module.

      So, it seems there are two possibilities:

      1. The call to get is failing, as suggested by Anonymous Monk, below. So, the first thing to do is to print out the variable $contents immediately following the call to get but before the call to new_from_content, to verify that get is working correctly.

      2. If it is, then check the installation of HTML::Parser on the machine where the code is failing. Perhaps try re-installing this module.

      Hope that helps,

      Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

        If it is, then check the installation of HTML::Parser on the m ...

        Don't bother with that its a waste of time

        $ perl -MHTML::Tree -le " HTML::TreeBuilder->new_from_content( undef ) +" Use of uninitialized value in subroutine entry at C:/citrusperl/site/l +ib/HTML/TreeBuilder.pm line 108. $ perl -MCarp::Always -MHTML::Tree -le " HTML::TreeBuilder->new_from_c +ontent( undef )" Use of uninitialized value in subroutine entry at C:/citrusperl/site/l +ib/HTML/TreeBuilder.pm line 108. HTML::TreeBuilder::new_from_content('HTML::TreeBuilder', undef +) called at -e line 1

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1010329]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found