I am trying to get the browser to download a file from an FTP server, but no matter what I try, I get this error:
Warning: ftp_get(taak4.docx) [function.ftp-get]: failed to open stream: Permission denied in /home/jamesmr117/domains/notepark.be/public_html/classes/taak.php on line 231
Warning: ftp_get() [function.ftp-get]: Error opening taak4.docx in /home/jamesmr117/domains/notepark.be/public_html/classes/taak.php on line 231
However, I am sure that my FTP server is 100% working, as file uploading works correctly. I also installed each folder in chmod 777. Does anyone know what the problem is?
My php code is:
$local_file="taak4.dockx";
$server_file="taak4.dockx";
ftp_get($FTPClient->connectionId, $local_file, $server_file, FTP_BINARY);
Thanks in advance!
source
share