Skip Menu |

This queue is for tickets about the Net-FTPSSL CPAN distribution.

Report information
The Basics
Id: 15156
Status: resolved
Priority: 0/
Queue: Net-FTPSSL

People
Owner: kral [...] cpan.org
Requestors: APradines [...] invivo-group.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.03
Fixed in: 0.03



Subject: Bug on FTPSSL
hello, I'm using Windows XP and ActivePERL, and I met some bugs by using your library NET:FTPSSL. When I want to connect myself to a ftp with an explicit connection on port 990, it doesn't hold account of my parameters and uses an implicit connection on port 21. I think the method NEW() doesn't pay attention to the parameters I enter and still uses the default parameters.
[guest - Thu Oct 20 05:47:02 2005]: Show quoted text
> hello, > > I'm using Windows XP and ActivePERL, and I met some bugs by using your > library NET:FTPSSL. > When I want to connect myself to a ftp with an explicit connection on > port 990, it doesn't hold account of my parameters and uses an > implicit connection on port 21. > I think the method NEW() doesn't pay attention to the parameters I > enter and still uses the default parameters. >
Sorry for the lateness of my response. There are some typos on the documentation, so the parameters must be passed capitalized. Like this: <code> use Net::FTPSSL; my $ftps = Net::FTPSSL->new('ftp.yoursecureserver.com', Port => 21, Encryption => 'I', Debug => 1) or die "Can't open ftp.yoursecureserver.com"; </code> The correction of these typos is on my to-do list. Thank you, -- kral