Skip to content

Instantly share code, notes, and snippets.

@yogeshdubey2006
Created December 29, 2018 12:12
Show Gist options
  • Save yogeshdubey2006/06e07f5a411307e5795f68ba724904ad to your computer and use it in GitHub Desktop.
Save yogeshdubey2006/06e07f5a411307e5795f68ba724904ad to your computer and use it in GitHub Desktop.
Magento 1 - Reset all customer password
UPDATE `customer_entity_varchar` caev
JOIN `customer_entity` ce ON ce.entity_id=caev.entity_id
JOIN `eav_attribute` ea ON ea.entity_type_id=ce.entity_type_id AND caev.attribute_id=ea.attribute_id
SET caev.value=MD5('admin123')
WHERE ea.attribute_code='password_hash';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment