gpt4 book ai didi

sugarcrm - 如何在 SuiteCRM 上使用 SQL 更改用户密码?

转载 作者:行者123 更新时间:2023-12-03 09:16:32 27 4
gpt4 key购买 nike

以前在 SugarCRM 中,以下语句就足够了:

UPDATE users SET user_hash = MD5('PASSWORD') WHERE user_name = 'USERNAME';

我现在找不到关于如何使用 SuiteCRM 进行操作的网站?

最佳答案

我发现了这个:

Can I still use MD5 passwords? I’m used to that and can easily administer passwords in the database using just MD5.

Sugar will still recognize passwords stored in MD5 format, but anytime a password is changed it will convert to the newer format. Unless very old PHP build (5.2) used in a system where bettercrypt() is not available, new password will use salted hashing algorithm.

将其发布到 SugarCRM 的网站上:

https://developer.sugarcrm.com/2012/05/16/new-for-sugar-6-5-stronger-password-storage-encryption/

事实证明,SuiteCRM 也使用这种新的密码格式,但它仍然可以识别 md5 密码,因此,相同的 sql 语句可以工作:

UPDATE users SET user_hash = MD5('PASSWORD') WHERE user_name = 'USERNAME';

我做到了并且有效:)

顺便说一句,同一篇文章建议使用 PHP crypt 更改密码,如下所示:

crypt(md5("newpassword"))

也许它可以帮助别人。

关于sugarcrm - 如何在 SuiteCRM 上使用 SQL 更改用户密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37061992/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com