Home >Database >phpMyAdmin >How to let PHPMyAdmin display the login interface
The following column phpmyadmin tutorial will introduce to you how to let PHPMyAdmin display the login interface. Often we find after configuring PHPmyadmin to connect to our MYSQL , as long as our access address is entered correctly, our database can be operated without entering any verification information. This is too dangerous!
The modification method is as follows:
We will modify the $cfg['Servers'][$i]['auth_type'] = 'config';
in the config.inc.php file in the phpmyadmin
root directory Just
$cfg['Servers'][$i] ['auth_type'] = 'http';
or
$cfg['Servers'][$i] ['auth_type'] = 'cookie';
.
The above is the detailed content of How to let PHPMyAdmin display the login interface. For more information, please follow other related articles on the PHP Chinese website!