Manually Setting a Temp Password?

Hello all,

I feel like this must be a silly question, but is there a special approach to manually set a new password for a customer who may not have access to their email (or if we are testing a problem they have)?

The docs mention creating a new Login, and entering a password, but the new login dialogue window doesn't have a password field. Am I missing a new security feature?

Best,

Nicholas

Parents Reply
  • Hi Nicholas,

    Good day.

    the password is still the same, for example, for account 1234, password is abcd. but in the table t_cust_login the password abcd will be encrypted, let 's say it will become "dcba!@#$". when user logn the password will be decrypted back to "abcd".

    When you update the table t_cust_login password field, you can use

    update t_cust_login

    set password='myNewPassword'

    where customer_no=1234

    the trigger on the t_cust_login will do the encrypting work for you.

    have fun.

    Ben

     

Children
No Data