• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Change password Form

Change password Form 8 months 1 week ago #43601

  • info1248
  • info1248's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
I am trying to create a form where the user can change his password.
Unfortunately, it doesn't work and I can't see what exactly is being changed.
Is there a guide or template for this?
Many thanks for support
Corinne


`j2024_users` (Lokal) UPDATE `j2024_users` SET `password`='{password:value}' WHERE `username` = '{username:value}'
The administrator has disabled public write access.

Change password Form 8 months 5 days ago #43606

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 630
  • Thank you received: 114
Hello,

Passwords are not saved in clear text for security reasons. You can add the following PHP script in the 'Scripts Called on Form Process' area while editing your form, to properly encode the value submitted in the Password field before mapping it to the appropriate database table:
if (isset($_POST['form']['password']))
{
$_POST['form']['password'] = md5($_POST['form']['password']);
}

This script will hash the password using MD5 before it is saved to the database.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!