Hey,

I've got an problem with QFtp ...
I've written an Qt program for scaling and uploading Image files. Everthing works fine till now. QFtp tell me with ftp->errorString(); the following message:
uloading file failed: pic.jpg: Permission denied
I "put" the file like the standard way:
Qt Code:
  1. QFile *file = new QFile(item->text());
  2. ftp->put(file, fileInfo.fileName());
To copy to clipboard, switch view to plain text mode 
QFile told me no error and the Ftp log only said "login correct".
Uploading while using the standard ftp-client works fine. So there are no problems on the server-side. Any ideas?