Skip to main content

Posts

Showing posts from February, 2013

forbidden: You don't have permission to access 192.168.*.*

forbidden You don't have permission to access on html access? - This is symbolic link folder to view/access on web browsers. I have found the answer from http://stackoverflow.com I Faced the same issue but i solved it by setting the options directive either in the global directory setting in the httpd.conf or in the specific directory block in httpd-vhosts.conf Options Indexes FollowSymLinks Includes ExecCGI by default your global directory settings is (httpd.conf line : 291): <Directory /> Options FollowSymLinks AllowOverride All Order deny,allow Allow from all </Directory> set the options to : Options Indexes FollowSymLinks Includes ExecCGI Finally, it should look like: <Directory /> #Options FollowSymLinks Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Allow from all </Directory>