PauGNU
PauGNU

Reputation: 793

Modify admin password on Magento Enterprise Edition directly on the database

I've updated a Magento community site to a Magento Enterprise Edition. My problem is that I can't login on the backoffice anymore. Magento EE uses a different password encryption so the old admin password doesn't work. The only way to change it is using a mysql query, but I don't know what's the encryption type. All tutorials I've found focus only on Magento Community.

Thanks for your help.

Pau

Upvotes: 0

Views: 1414

Answers (2)

vsushkov
vsushkov

Reputation: 2435

Put this as the very bottom of your index.php file and you will see the hash to insert into the database:

    Zend_Debug::dump(Mage::helper('core')->getHash('password', 2));

Upvotes: 6

Irsale-Net
Irsale-Net

Reputation: 1

In your DB, search the admin_user table. search the row by your username and edit it and make a new passwd and choise the MD5 encryption

Upvotes: 0

Related Questions