DEV Community

SolBeen Kwon
SolBeen Kwon

Posted on

[FTP] Permission Denied

  • 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/
Enter fullscreen mode Exit fullscreen mode

Top comments (2)

Collapse
 
darkain profile image
Vincent Milum Jr

That is quite the dangerous command. I'd highly suggest researching how permissions are handled and what that command really means before executing it.

Collapse
 
swervin profile image
SolBeen Kwon

Thank you for your good comments.