Ecshop Password encryption Method:
MD5 32-bit +salt, in short, the plaintext password is encrypted with MD5 once, and then after the resulting MD5 character with the Salt field value (the salt value for the system randomly generated, the generation will no longer change) and then a MD5 encryption, the results are inserted into the password field.
So if you forget to reset your background password, you need to do the following:
To reset the password to admin123 as an example
First, using MD5 encryption tool to "admin123" 32-bit encryption to get "0192023a7bbd73250516f069df18b500";
Second, open the Database Ecs_admin_user table with phpMyAdmin, view the value of the background user salt field such as "3996";
Third, the string "0192023a7bbd73250516f069df18b5003996" again MD532 bit encryption to get "FF7C0D9076CA4DCC6A88E6141A18A2D6";
Iv. fill in the string from the third step to the Passowrd field of the Ecs_admin_user table background user and execute.
After the above four steps, the background password is reset to admin123.
Ecshop Reset the background password Md5+salt