Skip to content

Instantly share code, notes, and snippets.

@eeree
Created January 21, 2015 14:35
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eeree/ee84ed3ecac99f64355d to your computer and use it in GitHub Desktop.
Save eeree/ee84ed3ecac99f64355d to your computer and use it in GitHub Desktop.
eZ Publish - how to reset admin password
SQL:
==
UPDATE `ezuser_setting` SET `is_enabled` = '1' WHERE `ezuser_setting`.`user_id` =14;
UPDATE `ezuser` SET `password_hash` = 'bab77ccf06f0b1f982e11c60f344c3c2' WHERE `ezuser`.`contentobject_id` =14;
SITE.INI:
==
[UserSettings]
HashType=md5_user
Now we can login using admin:admin credentials.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment