in reply to Re: Net::Telnet Padre Error
in thread Net::Telnet Padre Error

use Net::Telnet ();

$pop = new Net::Telnet (Telnetmode => 1, Input_log => $file, dump_log => $file1);

Replies are listed 'Best First'.
Re^3: Net::Telnet Padre Error
by rev_1318 (Chaplain) on Jun 17, 2011 at 17:35 UTC
    Try rewriting that as:
    use Net::Telnet; my $pop = Net::Telnet->new(Telnetmode => 1, Input_log => $file, dump_l +og => $file1);
    HTH,

    Paul

      I tried that and I am still getting the same error message. I am thinking it has something to do with my PATH environment variable. I have Padre saved on the C: drive, but it just can not seem to find Net::Telnet.

        You'll keep getting the message until you install Net::Telnet properly. As stated in my post above, you cannot just drop a Perl module into your Perl bin folder and expect it to work. Believe it or not, proper installation is almost that easy, but you have to do it right.


        Dave

        ...I already put the telnet.pm file into the directory where I put strawberry perl plus padre...

        How dit you "put the telnet.pm" file where?

        Paul