Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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