I normally do

sudo chgrp -R www-data <directory>

on Ubuntu to set a folder writable by the Apache process. What's the Mac OS X equivalent for www-data?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

On Ubuntu you use "www-data" because that is the user the Apache process runs as. You can identify the user Apache will use by checking the config file. On my Mac, it looks like this:

$ cat /etc/apache2/httpd.conf
[...]
User _www
Group _www
[...]

So one way to make your files writable would be to chgrp them to _www.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.