Reputation: 1931
Is it possible to get the users unencrypted password in an onUserAfterSave even in a plugin? If so how?
I tried using $user->password_clear but that is blank.
Upvotes: 0
Views: 228
Reputation: 585
Joomla use md5 hash to store password which is many to one mapping. So its almost impossible to recover JOOMLA password from md5 hash.
To change password just generate another md5 hash and replace it in database.
Upvotes: 1