Saat melakukan konfigurasi local web untuk kantor. Ternyata terdapat permasalahan saat setting memasukkan nama domain dari local web tersebut. Pada domain yang dimasukkan muncul pesan "New XAMPP Security Concept". Setelah dicari beberapa sumber akhirnya permasalahan tersebut berhasil diselesaikan. Dari pencarian yang dilakukan permasalahan "New XAMPP Security Concept" disebabkan konfigurasi pada file httpd-xampp.conf di C:\xampp\apache\conf\extra.
Berikut ini konfigurasi yang dilakukan
1. Buka file httpd-xampp.conf di C:\xampp\apache\conf\extra.
2. Buka file tersebut menggunakan notepad.
3. Pada baris terakhir:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Require local
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
4.Kemudian tambahkan tulisan yang berwarna merah:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Require local
Order deny,allow
Allow from ::1 127.0.0.0/8
Allow from all
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
sekian..
Thanks to http://heruiryanto.blogspot.co.id/2012/11/mengatasi-masalah-new-xampp-security.html
0 comments:
Post a Comment