I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2007-07-07 12:02:42-07 by salva in response to 5657
Re: 64-bit code won't compile and can't connect to sftp server
It fails because $ENV{PATH} is tainted.

Try adding...

$ENV{PATH} = '/usr/bin:/bin';

at the begining of your script, and it should work.

I have also uploaded a new version of the module to CPAN that catches this error.

Direct Responses: 5669 | Write a response