Open PHPMYADMIN locally, enter your username and password, and log in to PHPMYADMIN
Find the database of the website and find the storage management table [dede_admin]
After opening the [dede_admin] table, click Browse
After clicking Browse, you will find the user name and password, but the password is MD5 encrypted
So if you want PHPMYADMIN to recognize your password, it must be MD5 encrypted, so we also need to encrypt our password.
Use the MD5 online encryption tool. After opening it, we start to encrypt our password. Let’s assume the password is 123456. Click Encrypt and select a 32-digit lowercase password
MD5 encryption has 16-bit and 32-bit encryption, but phpmyadmin uses 20-bit encryption. I tried several groups and discovered the secret. It turns out that the password required by PHPMYADMIN is a 32-bit password minus the first five and last seven digits.
Go back to PHPMYADMIN, click [Pencil] to edit
Copy [c3949ba59abbe56e057f] to PHPMYADMIN, click Execute, change the password successfully
#Open the Dreamweaver backend, enter the user name and password, as shown in the picture:
Just click to log in.
Recommended related article tutorials: phpmyadmin tutorial
The above is the detailed content of How to use phpmyadmin to change the Dreamweaver backend password. For more information, please follow other related articles on the PHP Chinese website!