[RP]Security Check Error.

iNeon

Member
Jul 3, 2010
263
2
Well Im Getting The Security Check Error, I Can Only Get The Main Index On Localhost. look
Access forbidden!

New XAMPP security concept:

Access to the requested object is only available from the local network.

This setting can be configured in the file "httpd-xampp.conf".

If you think this is a server error, please contact the webmaster.

Error 403

5.217.229.6
04/12/2010 12:43:37
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1

On Localhost It Work's Fine. How Do I Fix This?

-iNeonz

-iNeonz
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
You're using xampp 1.7.2 or 1.7.3. This is simple do the following:

Goto xampp >> Apache >> conf >> extra >> httpd-xampp, And then search for something like this:

<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">

and change it to:

<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">

Then restart apache :)
 

Thomas

Member
Oct 25, 2010
270
5
Forget the link xD. I will make it easier follow tut below.

Search:
PHP:
#
# New XAMPP security concept
#


Replace evreything underneath with:
PHP:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Allow from all

    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>

 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Your welcome, Please let me know if you get any errors, If its on a VPS sometimes the Apache can break, That is why the best version is 1.7.1.
 

Users who are viewing this thread

Top