- Permission Denied Error Resolution that occurs while transferring files to the server using FTP
This error occurs because the path to that server is not authorized.
To give permission, you can enter the command on the Linux server as follows.
sudo chmod -R 777 /path/
Top comments (2)
That is quite the dangerous command. I'd highly suggest researching how permissions are handled and what that command really means before executing it.
Thank you for your good comments.