I've just installed WWW:Mechanize::Firefox, but when I tried to create an instance of this "class":

    my $mech = WWW::Mechanize::Firefox->new();

I get this error:

Failed to connect to , problem connecting to "localhost", port 4242: 
No connection could be made because the target machine 
actively refused it. 
at C:/strawberry/perl/site/lib/MozRepl/Client.pm line 144

Can anyone help please?

link|improve this question
Could you post some code? Also, what happens if you telnet into localhost:4242 – Eamorr Sep 14 '11 at 14:24
the code is too simple because the bug is at the beginning: use WWW:Mechanize::Firefox; $mech = WWW::Mechanize::Firefox->new(); print "blabla"; but it wont ofcourse coz it exits before :s – eliane Sep 14 '11 at 14:32
and sorry im not familiar with telnet and basically networking!! – eliane Sep 14 '11 at 14:35
2  
Do you have Mozrepl plugin installed in Firefox? – Alexandr Ciornii Sep 14 '11 at 15:15
thank u you were right i didnt have MozRepl and now it works :) – eliane Sep 15 '11 at 6:32
feedback

2 Answers

up vote 2 down vote accepted

You must install mozrepl and start it in the menu Tools → MozRepl → Start.

link|improve this answer
feedback

In addition to installing and starting firefox/mozrepl, an actively refused connection is frequently the work of a FIREWALL, so you need to learn to work your local firewall to allow mozrepl to listen for connections from localhost

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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