Klar habe ich zugriff, ist ja immerhin mein Root Server
War allerdings ein wenig Arbeit das log zu suchen. Ist nicht dort wo ich es vermutet hatte.
Hier wird nun auch deutlich, sofern ich das richtig lese, das mein Delphi bzw. die idFTP es im
ASCII Mode
Zitat:
File Zilla
Sun Jan 2 00:29:07 2011 0 ... 71960 /home/dsnprogupdater/Login.png b _ i r dsnprogupdater
ftp 1 * c
Delphi mit
Indy 10.5.5
Sun Jan 2 00:32:02 2011 1 ... 71959 /home/dsnprogupdater/Login.png a _ i r dsnprogupdater
ftp 1 * c
Delphi-Quellcode:
//IdFTP1.Put(AppDir + edtFileName.Text, edtFileName.Text); <-- Hatte es versucht.
FS.Clear;
fs.Position := 0;
fs.LoadFromFile(AppDir + 'Login.png'); //edtFileName.Text);
FS.Position := 0;
IdFTP1.TransferType := ftBinary;
IdFTP1.Put(FS, 'Login.png'); //edtFileName.Text);
Ich hatte es vorher als direkt Upload gehabt. Als dies nicht klappte, habe ich es mit dem Stream versucht. Egal wie, es ist immer eine defekte Datei.