[Help] xampp security concept.

DaiMinzz

Member
Aug 7, 2011
52
1
Hi all,

I have a problem, everybody can join the phpmyadmin of my hotel.
I saw some one said change things at httpd-xampp.conf
but i dont know what i need to do. please help

sorry for bad English.
 

Xenous

o shi
Nov 15, 2011
383
101
go to the c/xampp/apache/conf/extra/http-xampp or w.e and edit this
Code:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampplicenses|security|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from ::1 127.0.0.0/8
              fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
              fe80::/10 169.254.0.0/16

    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
with this
Code:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampplicenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    allow from all
        ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
restart xampp and you should be all good
had to know this from my old uber days
 

Brennen

hippopotomonstrosesquipedaliophobia
Nov 6, 2011
291
36
Ah no, Dai, now Ic ant edit the DB at all! Grrrgle I wont be able to edit anything! Change it back, you just have to change the password. Urgh.
 

Weezy

New Member
Nov 22, 2011
12
1
# # New XAMPP security concept # <LocationMatch "^/(?i:(?:xampplicenses|security|phpmyadmin|webalizer|server-status|server-info))"> Order deny,none Deny from none Allow from all ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var </LocationMatch>
 

Satan

Professional Pornstar
Aug 27, 2011
266
106
Okay. iReplaced The Code, But It's Still Saying Error 403 When I Change The Path From, "Localhost" To My Hamachi IP. ("5.162.180.116")
 

Users who are viewing this thread

Top