FTPS upload works but log says it used standard FTP
I have finally got my first WinSCP script to work using the FTPS protocol. The upload to my website works fine but the log appears to be telling me that standard FTP was used for the transfer:
Here's my BAT file:
and the script:
The Certificate was copied and pasted from its source so it is correct and there are no error messages given. I really need encrypted transfer and my Host does not permit SFTP, so I'd be grateful if some kind person could tell me what I'm doing wrong here.
Bill
. 2020-08-29 16:05:21.752 FTPS: None [Client certificate: No] . 2020-08-29 16:05:21.752 FTP: Passive: Yes [Force IP: Auto]; MLSD: Auto [List all: Auto]; HOST: Auto
Here's my BAT file:
"C:\Program Files (x86)\WinSCP\WinSCP.com"/certificate=(certificate) /explicit /ini=nul /script=C:\winscp.txt /log=C:\winscplog.txt
and the script:
open ftp://(username):(pword)@(ftp server) put (path to local file) public_html/wp-content/uploads/ close exit
The Certificate was copied and pasted from its source so it is correct and there are no error messages given. I really need encrypted transfer and my Host does not permit SFTP, so I'd be grateful if some kind person could tell me what I'm doing wrong here.
Bill