Forums

Joomla Registration - Password Encrypted

jhdesign 27 Jul, 2010
I'm using the Joomla Registration plugin with auto password generation.

The email that is sent out includes the MD5 hashed version of the password and not the actual password.

Has anyone come across this issue?

Jacob
nml375 27 Jul, 2010
Hi Jacob,
I posted a fix on this here about one or two months ago. I'll see if I can't locate the post in the evening..

/Fredrik
jhdesign 27 Jul, 2010
Would highly appreciate it! Thank you.
jhdesign 27 Jul, 2010
Fredrik, I actually used you forum post last weekt to fix some issues. But I got to the point that email is sent with encrypted password. I did not see a solution in your post?
nml375 27 Jul, 2010
Hi Jacob,
Sorry, didn't notice your post there. The fix should be in my very last post in that thread:
com_chronocontact/plugins/cf_joomla_registrations.php:402
/* replace this:
 * $password = JRequest::getString($params->get('pass'), '', 'post');
 */
$password = $post['password2'];


/Fredrik
jhdesign 27 Jul, 2010
I have that in place already but still, getting password encrypted instead of what was typed in.
nml375 27 Jul, 2010
Hi Jacob,
Then I am unfortunately out of ideas. $post['password2'] should contain the cleartext password, while $post['password'] contains the hashed version.

/Fredrik
This topic is locked and no more replies can be posted.