On Thu, 26 Dec 2002 15:58:49 +0800 pevee <[EMAIL PROTECTED]> wrote: > I have previously installed DBI. > > ppm install DBI > > The installation went well. But, when I execute this program:- > > C:\Perl\bin>perl trap2.pl > install_driver(Proxy) failed: Can't locate RPC/PlClient.pm in @INC (@INC > s: C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/site/lib/DBD/Proxy.pm line > BEGIN failed--compilation aborted at C:/Perl/site/lib/DBD/Proxy.pm line > Compilation failed in require at (eval 1) line 3. > Perhaps a module that DBD::Proxy requires hasn't been fully installed > > Seems like it still require DBD::Proxy. Please advice.
DBI::ProxyServer and DBD::Proxy are present, but can not work until RPC::PlClient is installed. DBD/Proxy.pm is mentioned twice in the error message, it is present. What is missing is RPC/PlClient.pm. RPC::PlClient and RPC::PlServer are required for the proxy client and server. They are part of the PlRPC module. You will need a proxyserver running on the server machine. -- Mac :}) ** I normally forward private questions to the appropriate mail list. ** Ask Smarter: http://www.tuxedo.org/~esr/faqs/smart-questions.html Give a hobbit a fish and he eats fish for a day. Give a hobbit a ring and he eats fish for an age.
