SugarCRM用户密码
我已经在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查“system_ generated_password”列。 '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.
我想你可能误会了。我刚刚创建了一个用户名为
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:The
user_hash
has a value of1e3fab09c625a96334d18d2da27dae46
.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.
如果您使用 phpmyadmin,则可以使用 md5 函数创建用户。
您可以更改 passworld 并使用 md5() 函数;
You can create user using md5 function if you using phpmyadmin.
You can alter the passworld and use md5() function;