Good evening!
My English is not so good, but I will try to explain my Problem
I bought a ftp server. Now I want to upload a file on the server, using _Ftp.au3 (latest version)
Here's my code:
$server = 'svr'
$username = 'usr'
$pass = 'pwd'
$Hand = _FTPOpen('FTPCon','','','',1) ; Connect in Passiv Mode
; @Error: No Error
$Ftpc = _FTPConnect($Hand, $server, $username, $pass)
; @Error: No Error
_FtpPutFile($Hand, @Desktopdir"\myfile.txt", '/results/textfile.txt')
; @Error: -1
$Ftpc = _FTPClose($Hand)
; @Error: No Error
Does anyone know what this Error may cause?
Maybe its a general Problem ?
Thanks in Advance
Take Care
Lenny