ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Post here if you experience file transfer problems or unexpected errors.
I have used the below wildcard to identify all files ending in _1 with no file type to upload and receive the following error. From what I understand error 502 means "The server does not support this command"

The willd card works fine using the dos ftp script send *_1 or put *_1 or mput *_1

PUTFILE("C:\TEMP\*_1.txt")
Uploading................. 1016199_1.txt
DELE 1016199_1.txt.part
550 No such file or directory
PASV
502 Command not implemented.

***** PUTFILE Error #502: Cannot upload local file 1016199_1.txt.
***** The server said: Command not implemented.
Thanks,
Bob
Hello Bob,

It seems that your FTP server does not support the FTP protocol
command PASV. Try putting this command on the top of your script file
and run again:
Code: Select allSETPASSIVE(DISABLED)
Feel free to post here again if it still does not work.