PHP ftp_put () - "Can not STOR".
I am trying to upload a file via PHP ftp_put, for example:
ftp_put($this->conn_id, $rempath, $locpath, $mode);
However, I get the error "Can not STOR". Nothing more. The FTP connection is fine, as I can upload files using the same settings and ftp_get (). The script should be fine, as it works fine on my local installation, but not on my public server.
What can I try to make it work? I googled but did not find anything worthy.
+3