hi,
i have indy 10 installed on Delphi 7 personal, and am trying to load a simple text file on server using ftp
here's my code
if ftp.Connected then ftp_Kitten.Disconnect;
ftp.Host:='xxx';
ftp.Username:='xxx';
ftp.Password:='xxx';
ftp.Port := 21;
ftp.Connect;
ftp.Put('c:\ida.txt', 'ida.txt', true);
ftp.Disconnect;
and when i run my app, i am getting the following error :
Project1.exe raised exception class EIdRepluRFCError with message "APPE':command unrecognized'.Process stopped. Use step or run to continue
I am beginner in Delphi and after hours of researching the web, i truely don't know how to solve this issue.
Thanks for your help