I now used
Indy TIdFTP to Upload file to
FTP successfully.
Code:
with IdFTP1 do
begin
Host := [
ftp server name];
User := [User];
Password := [PW];
Passive := true;
Connect;
Put(sourcefilename, targetfilename_withpath)
end;
As you mentioned, no SSL libs necessary with regular
FTP.
Thank you for your advice!