How to access phpmyadmin
Apr 11, 2020 am 10:33 AMHow to access phpmyadmin?
1. First download the latest version of the installation package.
2. Unzip the installation package and put it in the htdocs folder in APMSever.
3. Change $cfg['blowfish_secret'] = ''; in phpMyAdmin/libraries/config.default.php to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is a random character)
In the phpMyAdmin directory, open config.sample.inc.php, line 18 $cfg['blowfish_secret'] = ''; change to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is a random character)
4. Configure the config.default.php file
Open config.default.php and search for $cfg[ 'PmaAbsoluteUri'] ="", plus the path where phpmyadmin is located, such as: $cfg['PmaAbsoluteUri'] ="http://218.241.157.76:3380/"
Find
$cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = '';
Just fill in your mysql user and password respectively. Here is
$cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = '123456';
to change the root user and password.
After modifying the file, enter "localhost/phpmyadmin
" in the browser. The login information is as follows:
Server: 127.0.0.1:3306
Username: root
Password: (leave blank)
The above is the detailed content of How to access phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Where does the wordpress database exist?

How to add foreign keys in phpmyadmin

What is the password for the phpmyadmin account?

How to delete data table in phpmyadmin

Where is the associated view of phpmyadmin
