after installing magento in my local machine I forgot admin password

后端 未结 15 1561
隐瞒了意图╮
隐瞒了意图╮ 2021-01-30 23:20

after installing magento in my local machine I forgot admin password what I have given. I am not able to login to my admin area how can I reset the password

I have read

15条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-31 00:04

    Get List of Users:

    *Note: Add your table prefix before table name.

    SELECT * FROM admin_user; Then, find the username you want to modify in the listing provided - ‘admin’ in this example. Then, to update the password, type:

    UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin'; ‘qX’ would be changed to whatever you want it to be and same goes for ‘password’

    You can also do this in phpMyAdmin, find the admin_user field and choose MD5 when updating password.

    If you want to add a new admin user, you must not only create a new entry in the table ‘admin_user’, but you also have to insert an entry in the table ‘admin_role’ which has to be associated with the user by the field ‘user_id’.

提交回复
热议问题