Home > Article > Backend Development > phpmyadmin modification record (continuously updated)_PHP tutorial
Applicable to phpMyAdmin new version 3.5.2
1 About remote login
Problems encountered: If you install using the Linux system software package method, you cannot log in, and you need to download a separate installation package
Items that need to be modified: phpMyAdmin/libraries/config.default.php
$cfg['Servers'][$i]['host'] = "Remote IP address";
$cfg['Servers'][$i]['port'] = 'Port number';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'yhnji-db-yoqoo';
2 Turn off form autofill and disable www.2cto.com
Modify: phpMyAdmin/libraries/auth/cookie.auth.lib.php Line 193 can be logged out or deleted.
3 Solution to PhpMyAdmin configuration file now requiring a phrase password
Edit config.default.php
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['blowfish_secret'] = 'abcde'; ("abcde" is customized)
This password is used to encrypt cookies to avoid confusion when cookies are shared by multiple PhpMyAdmin or other programs.
Author:wufa