Answers for "magento 2 change customers password"

PHP
1

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

Browse Popular Code Answers by Language