• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Web Fix 403 error for fresh wamp installations

Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
Locate the following:
NbkP9AC - Fix 403 error for fresh wamp installations - RaGEZONE Forums


Open the file, control+f, locate
Code:
<Directory "c:/wamp/www/">
..
..
</Directory>

Replace that block with
Code:
<Directory "c:/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride all

    #
    # Controls who can get stuff from this server.
    #

#   onlineoffline tag - don't remove
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

Other possible errors:
Search for "ServerName"
It should be:
Code:
ServerName localhost:80

Search for "<Directory />"
It should be:
Code:
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Jul 12, 2011
Messages
1,229
Reaction score
475
I tried this but still no fix :p

Some CMS's, such as MapleSyrup, have a bad .htaccess, which causes a 403/500 error. Post the contents of your .htaccess file here (or delete it altogether).

Edit: Fixed zydee's problem. See the edit, under "other problems."
 
Last edited:
Newbie Spellweaver
Joined
Aug 10, 2013
Messages
12
Reaction score
0
Locate the following:





NbkP9AC - Fix 403 error for fresh wamp installations - RaGEZONE Forums


Open the file, control+f, locate
Code:
<Directory "c:/wamp/www/">
..
..
</Directory>

Replace that block with
Code:
<Directory "c:/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride all

    #
    # Controls who can get stuff from this server.
    #

#   onlineoffline tag - don't remove
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

Other possible errors:
Search for "ServerName"
It should be:
Code:
ServerName localhost:80

Search for "<Directory />"
It should be:
Code:
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
please can you team viewer me ? i dont get it.
 

Attachments

You must be registered for see attachments list
Back
Top