in reply to setting for http recorder
Super short answer:
HTTP::Proxy is not in your include path.
Longer answer:
This may mean it is not installed or that it is simply installed to a location not in the @INC list. If it is installed to a location not in the @INC list, you can either set PERL5LIB to point to the non-standard install location or you can put
immediately after the use strict; use warnings; block.use lib "/path/to/nonstandard/install/location/";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: setting for http recorder
by Anonymous Monk on May 23, 2007 at 08:20 UTC |