PhpMyAdmin log ind
Hej eksperterTjekkede security i XAMPP (Apache, MYSql og PHP pakke). Viste at PHPMyAdmin var usikker.
Fandt en vejledning i at ændre config.ini.php sådan her:
In the basic configuration of XAMPP, PHPMyAdmin have a public access. You can close this 'gap' with the "config.inc.php". Open the configuration file of PHPMyAdmin and edit the 'auth_type' lines:
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'secret';
Now correctly ...
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
Now, user and password are checked before PHPMyAdmin access the mysql server. Optionally you can set 'cookie' for 'http'.
Ændrede men kan ikke få adgang. Bruger og kode er tilsyneladende forkert, men jeg mindes ikke at have specificeret nogen af delene.
Hvordan kommer jeg videre herfra?
På forhånd tak
nicolaus
