Forbidden
You don't have permission to access /index.php on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
What can I do for fixing this error?
Forbidden
You don't have permission to access /index.php on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
What can I do for fixing this error?
@sou.dara.16
You don't have permission to access /index.php on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
What can I do for fixing this error?
Read this
http://pcsupport.about.com/od/findbyerrormessage/a/403error.htm
It has an example that can tell you how to prevent from that of happening again.
C:\wamp\bin\apache\apache2.2.22\conf\httpd.conf - (Open)
<Directory "c:/wamp/www/">
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
change to
<Directory "c:/wamp/www/">
Order Deny,Allow
Allow from all
Allow from 127.0.0.1
</Directory>
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.