Hey guys, I'm running Mac OS X 10.6 Snow Leopard with the default Apache 2 installation that it comes with and PHP 5 enabled.
Anyways, I have configured a VirtualHost whose DocumentRoot
is under /Users/blaenk/Sites
. This works perfectly fine, but if I set it to a directory within my code
directory, Users/blaenk/code/php/somesite
, it gives me the Forbidden error. Apparently this has to do with permissions on the folders, as they are different:
drwxr-xr-x+ 6 blaenk staff 204B Dec 20 16:09 Sites/
drwx------ 15 blaenk staff 510B Nov 28 18:35 code/
I tried making the code
, php
, and somesite
directories all 755, but that did not seem to solve the issue. I also did chmod -R 755 ~/code/php/blaenkdenum
, to no avail.
I would appreciate any help which you guys can provide. Let me know if I'm missing any information.
Thanks.