Answers for "change password in magento 2 of customer"

PHP
2

magento 2 change customers password

UPDATE `customer_entity`
SET `password_hash` = CONCAT(SHA2('xxxxxxxxENTERCUSTOMERPASSWORD', 256), ':xxxxxxxx:1')
WHERE `entity_id` = 1;
Posted by: Guest on January-04-2022
1

create admin password in magento 2

bin/magento admin:user:create --admin-user="admin2" --admin-password="admin123" --admin-email="[email protected]" --admin-firstname="Amin" --admin-lastname="Admin"
Posted by: Guest on October-25-2020

Code answers related to "change password in magento 2 of customer"

Browse Popular Code Answers by Language