如何将 MD5MD5 (PHP-Fusion) 哈希密码导入 Drupal 7

发布于 2024-11-19 17:41:50 字数 240 浏览 2 评论 0原文

这里Drupal 6用户密码导入到Drupal 7就是答案MD5 哈希密码。 我自己不是一名程序员;)我正在努力寻找应该在哪里更改代码,以便使用不是来自以前版本的 Drupal 而是来自 PHP-Fusion (7.02.01) 的用户密码。有人可以帮助我吗? :)

Here Drupal 6 user password import to Drupal 7 is the answer for MD5 hashed passwords.
Not being a programmer myself ;) I'm struggling to see where should I change the code, to work for user passwords not from a previous version of Drupal, but from PHP-Fusion (7.02.01). Could someone help me? :)

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

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

发布评论

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

评论(1

欢你一世 2024-11-26 17:41:50

Drupal 7 中的哈希机制是可切换的。正如 password.inc 的文档中所述,您可以设置password_inc(例如在settings.php中:$conf['password_inc'] = '/path/to/alternative/file.inc')。在该文件中,您需要实现上述链接中提到的 3 个函数,以使用 PHP-Fusion 使用的格式(您可能可以在很大程度上重复使用该格式)。

这样,您就可以继续使用旧的哈希值。您还可以实现某种逻辑,以对新密码使用默认的哈希算法,并强制用户在下次登录时设置新密码。这可能允许您在一年左右的时间后删除这部分代码。活跃用户已更新。

The hashing mechanism in Drupal 7 is switchable. As described in the documentation of password.inc, you can set the password_inc (for example in settings.php: $conf['password_inc'] = '/path/to/alternative/file.inc'). In that file, you need to implement the 3 functions mentioned in the above link to use the format that is used by PHP-Fusion (which you might be able to re-use to a large part).

That way, you can keep using your old hashes. You could also implement some kind of logic to use the default hashing algorithm's for new passwords and force users to set a new password the next time they log in. That might allow you to drop this part of the code after a year or so when all active users have been updated.

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