Mengatasi Masalah New XAMPP Security Concept

New XAMPP Security Concept

XAMPP adalah satu paket komplit web server yang mudah dipasang di berbagai sistem operasi. XAMPP merupakan singkatan dari X (empat system operasi apapun : Linux, Windows, Mac OS X, Solaris), Apache, MySQL, PHP, Perl. XAMPP merupakan tool yang menyediakan paket perangkat lunak ke dalam satu buah paket.  Dalam paketnya sudah terdapat Apache (web server), MySQL (database), PHP (server side scripting), Perl, FTP server, phpMyAdmin dan berbagai pustaka bantu lainnya. Dengan menginstall XAMPP maka tidak perlu lagi melakukan instalasi dan konfigurasi web server Apache, PHP dan MySQL secara manual. XAMPP akan menginstalasi dan mengkonfigurasikannya secara otomatis untuk Anda.

Sudah lama saya tidak mengupdate XAMPP pada komputer saya. Namun ketika ingin update XAMPP malah terjadi error. Seperti inilah errornya :


Accesss 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

localhost
Apache/2.4.3 (Unix) Open SSL/1.0.1c PHP/5.4.7

Rupanya XAMPP menerapakan konsep keamanan baru yang dimulai sejak XAMPP versi 1.8.0. Untuk mengatasi masalah New XAMPP security concept pada Linux seperti ini caranya :

1) Buka httpd-xampp.conf yang ada pada direktori /opt/lampp/etc/extra/
2) Temukan kata berukut ini : <Directory "/opt/lampp/phpmyadmin">
3) Sekarang tambahkan kalimat Require all granted sebelum </Directory>
4) Sehingga kodenya akan menjadi seperti ini :
    <Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Allow from all
    Require all granted
   </Directory>
4) Save lalu restart XAMPP anda melalui command terminal /opt/lampp/lampp restart
5) Selesai.

Untuk mengatasi masalah New XAMPP security concept pada Windows hampir sama dengan Linux, seperti ini caranya :
1) Buka httpd-xampp.conf yang ada pada direktori xampppath\apache\conf\extra
2) Temukan kata berukut ini : Allow from ::1 127.0.0.0/8
3) Sekarang tambahkan kalimat Allow from all setelah Allow from ::1 127.0.0.0/8
4) Sehingga kodenya akan menjadi seperti ini :
    # Close XAMPP sites here
    <LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from ::1 127.0.0.0/8 
    Allow from all
    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
   </LocationMatch>
4) Save lalu restart XAMPP anda.
5) Selesai.

Semoga membantu.

3 comments for "Mengatasi Masalah New XAMPP Security Concept"

  1. ada cara lainnya ngga bro? ane coba kok masih gagal ya.


    sekalian bro main kemari

    http://www.oprekmotore.com/2016/02/01-paket-bore-up-kawahara-62mm-untuk-jupiter-mx-series.html

    ReplyDelete
  2. Thanks bro, genius :D salam kenal ya dari samarinda bro

    ReplyDelete

Post a Comment