krishnaprazad has asked for the wisdom of the Perl Monks concerning the following question:

Hello Everyone, When I use a script using Net::Appliance::Session, it throws up an error, "no loader available of that name at /usr/bin/...../Generic.pm". I tried commenting out the whole script except for creating a new instance in this. Still it throws this error. Could anyone tell me what could cause this error?
#!/usr/bin/perl use Net::Appliance::Session; my $s = Net::Appliance::Session->new( Host => '192.168.1.1', Transport + => 'SSH', ); $s->close();
Thanks in advance, Krishna.

Replies are listed 'Best First'.
Re: Net::Appliance::Session module
by Corion (Patriarch) on Apr 10, 2008 at 06:35 UTC

    I guess it would help us to help you if you told us the exact error message. Especially the parts before Generic.pm and the line number.

    Using Google Code Search for your error message shows that the error message comes from Data::Phrasebook::Loader, so most likely something somewhere tries to load a wrong phrase from a phrasebook. But with you keeping the line number to yourself, it's hard to tell you what causes the error.

    A reply falls below the community's threshold of quality. You may see it by logging in.