SugarCRM用户密码

发布于 2024-10-18 07:33:44 字数 106 浏览 2 评论 0原文

我已经在 SugarCRM 中创建了一个用户;一旦我创建了用户,密码就会邮寄给该用户。 我看到表 user,但 user_hash 为空。

在发送电子邮件之前,它会将密码存储在哪里?

I've created a user in SugarCRM; once I've created a user the password is mailed to the user.
I see the table user, but the user_hash is blank.

Where does it store the password before it sends an email?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只为一人 2024-10-25 07:33:44

检查“system_ generated_pa​​ssword”列。 'user_hash' 将为空,直到新用户使用系统生成的密码登录,然后为自己创建一个新密码。

Check the column 'system_generated_password'. 'user_hash' will be null until the new user logs in with the the system generated password and then creates a new password for themselves.

似狗非友 2024-10-25 07:33:44

我想你可能误会了。我刚刚创建了一个用户名为 new_user 的新用户。然后,我执行了以下查询:

SELECT * FROM users WHERE user_name = "new_user"

user_hash 的值为 1e3fab09c625a96334d18d2da27dae46

我仔细检查了一下,通过电子邮件发送给我的密码是 l7YaR7,md5 哈希到上面。

我在 Sugar 6.1.1 中这样做了。您使用什么版本?

另外,邮件发出去了吗?在成功发送电子邮件之前,密码哈希可能不会发送到数据库。

I think you might be mistaken. I just created a new user with a user name new_user. I then did the following query:

SELECT * FROM users WHERE user_name = "new_user"

The user_hash has a value of 1e3fab09c625a96334d18d2da27dae46.

I double-checked, and the password emailed to me was l7YaR7, which md5 hashes to the above.

I did this in Sugar 6.1.1. What version are you using?

Also, did the email get sent out? It's possible that the password hash isn't sent to the DB until after the email has been successfully sent.

何以心动 2024-10-25 07:33:44

如果您使用 phpmyadmin,则可以使用 md5 函数创建用户。

您可以更改 passworld 并使用 md5() 函数;

You can create user using md5 function if you using phpmyadmin.

You can alter the passworld and use md5() function;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文