First of all, I would say I'm a novice at perl and I installed it on a Windows server for the very first time yesterday. (5.8.6).
I have run this code snippet on a version of perl on linux (one that I did not install) and it runs fine, but running it on the perl I installed on the Windows server produces this error message:
+555 Encryption mode unknown! (EXP_CRYPT)
Can anyone help?
Code snippet:
my $ftps = Net::FTPSSL->new(
'mvsb.xxxxx.net',
Port => 21,
Encryption => EXP_CRYPT,
Debug => 1
);
if (!defined($ftps)) {
die;
}