How to retrieve or modify DEDECMS Admin login password? A customer forgot the password, looked for a long time not a few reliable answers,Dede is using MD5 encryption, but it is to display 32-bit MD5 plus password from 6th bit start of 20 bit The method is to directly modify its MySQL database: through the phpMyAdmin login database, find the data table Dede_admin, where userid a column is the management user name, pwd a column is the corresponding administrator password MD5 plus password. Here we need to specifically explain that the general MD5 is either 16-bit, or 32-bit, and dedecms password MD5 plus password only show 20 bits, in fact, it is to display 32 bit MD5 plus password from 6th bit start 20 bits, So for example, 123456 of the 32-bit MD5 encryption is e10adc3949ba59abbe56e057f20f883e, here will be shown as c3949ba59abbe56e057f. As mentioned above, we just change the PWD corresponding to the MD5 plus password to c3949ba59abbe56e057f, the password is changed to 123456.
Dede forgot password in the database to modify the method