I'm coding a web crawler and I've been using WWW::Mechanize::Firefox to navigate some pages (for the others I use WWW::Mechanize) which keep loading content after the page loaded and I've never had an issue with that.

Yesterday I added DBI and DBD::mysql to the script, adding queries to export data to a database (this works perfectly), but suddenly MozRepl started giving this error:

(in cleanup) Can't call method "execute" on an undefined value at /Library/Perl/5.10.0/MozRepl.pm line 372 during global destruction.
(in cleanup) Can't call method "execute" on an undefined value at /Library/Perl/5.10.0/MozRepl.pm line 372 during global destruction.

and terminating the script after 1 cycle (it should run until it gets to the end of a specific text file, which it doesn't).

I haven't touched anything from this part of the script (don't need to use the db with those pages), at least willingly. I checked with a file compare app and couldn't solve anything.

Posting the code could be tricky, it's pretty long and I have no idea where the problem may lie.

EDIT

Sometimes it also gives this error instead of the previous one:

(in cleanup) Can't call method "cmd" on an undefined value at /Library/Perl/5.10.0/MozRepl/Client.pm line 186 during global destruction.
link|improve this question

Where does MozRepl.pm come from? Is that something that you wrote? – brian d foy Oct 28 '10 at 3:49
@brian: not at all. I believe it got installed with Mechanize::Firefox, since it's used to control Firefox via MozRepl. – Gurzo Oct 28 '10 at 7:51
feedback

1 Answer

up vote 0 down vote accepted

This has nothing to do with DBI or DBD::mysql.The messages are nothing to worry about, but I admit they are unsightly.

The messages come as remaining Perl/Javascript objects get destroyed in an unordered way during Perl Global Destruction. If you want to avoid them, destroy your $mech object before quitting your application.

undef $mech;
# end of program

If the $mech object is released before the program gets shut down, the Perl/Javascript bridge can also shut down in an orderly fashion.

Also note that the preferred forum for questions about WWW::Mechanize::Firefox is http://perlmonks.org :)

link|improve this answer
Since mech needs to be called once for every cycle, do I need to undef it at the end of each cycle or just at the end of the script? – Gurzo Oct 28 '10 at 8:47
I tried having it "undef $firemech" at the end of every cycle, but it still gives the error. Only difference, this time it goes on for like 5-10 cycles and then it pops up. Any idea? – Gurzo Oct 28 '10 at 13:07
This did not solve the question, but since Corion has been so helpful on PerlMonks I award him the answer. – Gurzo Nov 28 '10 at 14:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.