Untuk itu, sobat perlu mengaktifkan proteksi menggunakan password, komputer sobat akan lebih aman diakses melalui jaringan.
- Buka browser lalu arahkan ke http://localhost/security/xamppsecurity.php
- Masukkan user dan password
- Lalu klik Secure Xampp Directory
- Selesai. Folder xampp sudah terproteksi
- Lanjut ke proteksi folder phpmyadmin
- Bukalah file config.inc.php pada direktori C:\xampp\xampp\phpMyAdmin\config.inc.php
- Lakukan perubahan pada string berikut :
/* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['AllowNoPassword'] = true;menjadi :
/* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'Password'; $cfg['Servers'][$i]['AllowNoPassword'] = false;