-2

I have reviewed the following link Chmod to allow read and write permissions for directory

However when I run chmod 755 I get chmod: -R: No such file or directory

This is what I tried to do chmod 755 -R /Applications/MAMP/htdocs/bethel/wp-content

I would like to know what is missing.

1 Answer 1

2

The options/flags should come before the mode you're trying to set. So the correct syntax is:

chmod -R 755 /Applications/MAMP/htdocs/bethel/wp-content

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .