allyant Posted September 17, 2007 Share Posted September 17, 2007 Hey, I compiled Apache + PHP on Mac OSX, Everything is fine except I get 404 - Forbidden every time I go to a directory other than / (localhost). I had a look at my httpd.conf file and edited it but I still get the same result, here it is (without the comments): ServerRoot "/apache2" Listen 80 LoadModule php5_module modules/libphp5.so <IfModule !mpm_netware_module> User daemon Group daemon </IfModule> ServerAdmin [email protected] DocumentRoot "/apache2/htdocs" <Directory /> AllowOverride None Order deny,allow Deny from all Satisfy all Options Indexes </Directory> <Directory /> Options Indexes AllowOverride all Order Deny,Allow </Directory> <IfModule dir_module> DirectoryIndex index.php index.php3 index.html index.htm index.html.var </IfModule> <FilesMatch "^\.ht"> Order allow,deny Deny from all Satisfy All </FilesMatch> ErrorLog logs/error_log LogLevel warn <IfModule log_config_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio </IfModule> CustomLog logs/access_log common </IfModule> <IfModule alias_module> ScriptAlias /cgi-bin/ "/apache2/cgi-bin/" </IfModule> <IfModule cgid_module> </IfModule> <Directory "/apache2/cgi-bin"> AllowOverride None Options Indexes Order allow,deny Allow from all </Directory> DefaultType text/plain <IfModule mime_module> TypesConfig conf/mime.types AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps </IfModule> <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> Link to comment https://forums.phpfreaks.com/topic/69611-solved-404-forbidden/ Share on other sites More sharing options...
lightpace Posted September 17, 2007 Share Posted September 17, 2007 check the directory permissions and ownership. Link to comment https://forums.phpfreaks.com/topic/69611-solved-404-forbidden/#findComment-349805 Share on other sites More sharing options...
allyant Posted September 17, 2007 Author Share Posted September 17, 2007 thanks! that done it, I downloaded a nice app named BatChmod that allows me to change the folders permission. Link to comment https://forums.phpfreaks.com/topic/69611-solved-404-forbidden/#findComment-349811 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.