in reply to Re: Net::Appliance::Session module
in thread Net::Appliance::Session module

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

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

    There is no "standard include path" for the "Perl engine" - the include path widely varies between different installations, so your description is of no help.

    Looking at the source code of Data::Phrasebook::Generic, you can likely patch it to make the error message more descriptive:

    Replace:

    croak("no loader available of that name\n") unless($plugin);

    With:

    croak("no loader available of the name '$class'") unless($plugin);

    Also, you can set a debugging flag with Data::Phrasebook, and I recommend doing that.