How do I change file permissions on Wordpress on Mac

-3

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.

James Gacuca

Posted 2016-02-22T06:25:49.470

Reputation: 1

Answers

1

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

Mureinik

Posted 2016-02-22T06:25:49.470

Reputation: 3 521