Home > Article > CMS Tutorial > What should I do if I forget my phpcms password?
What should I do if I forget my password?
When we logged in to the phpcms backend, we found that the password was incorrect. After entering it multiple times, the error was still prompted.
If your account does not have super administrator rights, ask the super administrator to log in to the backend, find your account in "Administrator Management" under the "Settings" module, and click Revise.
Reset a password and log in with the new password.
If you are the super administrator and don’t remember the password, then we need to check the database.
Find the database corresponding to the website and click to enter.
In the database, find v9_admin (table prefix _admin) and click to enter.
#We can find the encrypted password in the v9_admin table.
Since the phpcms password encryption method is mixed encryption, we can check other encryption values of the passwords you know and the "encrypt" value to modify them, and log in with the known password. That’s it.
#In this way we can log in again and change the password again in the background after logging in.
The above are two ways to change the phpcms login password. Have you learned it?
Notes
phpcms database password encryption is compound encryption, which generally cannot be solved by md5 decoding.
When we change the database password, we must change it to a known encrypted value and encrypt, both of which are indispensable
The above is the detailed content of What should I do if I forget my phpcms password?. For more information, please follow other related articles on the PHP Chinese website!