Home >Backend Development >PHP Tutorial >phpmyadmin download Use phpmyadmin to change mysql50 login password

phpmyadmin download Use phpmyadmin to change mysql50 login password

WBOY
WBOYOriginal
2016-07-29 08:37:29979browse

update mysql.user set password=old_password('new password') where user='username'
Note that this old_password (MYSQL function) will encrypt the password into 16 digits, and the
password() function cannot be used. Otherwise, it will be encrypted to 40 bits.
Then modify PHPMYADMIN

Copy the code The code is as follows:


$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based ; / MySQL password (only needed )

After completing these two parts, I feel more relieved. I will put my program in immediately, and then make a BLOG for Dabin.
OK, it’s time to download the VIRTUAL HOST tomorrow.


The above introduces how to download phpmyadmin and use phpmyadmin to change mysql50 login password, including the content of phpmyadmin download. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn