[Ssh-sftp-perl-users] SFTP use on XP
Brought to you by:
dbrobins
From: Jean-Marc L. <jea...@ex...> - 2008-07-03 12:03:40
|
To Run on XP In NET::SSH::SFTP.PM Change the line 11 >From use Net::SSH::Perl; to use Net::SSH::W32Perl; And line 60 >From my $ssh = Net::SSH:: Perl->new($sftp->{host}, protocol => 2, To my $ssh = Net::SSH::W32Perl->new($sftp->{host}, protocol => 2, In NET::SSH::PERL::PERL.PM In line 53 Replace : my $proto_class = join '::', _PACKAGE_, By my $proto_class = join '::', 'Net::SSH::W32Perl', You can use use constant IS_WIN32 => ($^O =~ /MSWin32/i); To make this change regards And all will un ************************************************************************************** This e-mail and any attachments may be confidential and/or legally privileged. If you have received this e-mail and you are not a named addressee, please inform the Experian Decision Analytics Service Desk on +377 97 98 54 54 and then delete the e-mail from your system. If you are not a named addressee you must not use, disclose, distribute, copy, print or rely on this e-mail. Although Experian Decision Analytics routinely screens for viruses, addressees should scan this e-mail and any attachments for viruses. Experian Decision Analytics makes no representation or warranty as to the absence of viruses in this e-mail or any attachments. Please note that to ensure regulatory compliance and for the protection of its clients and business, Experian Decision Analytics may monitor and read e-mails sent to and from its servers ************************************************************************************** |