如何将 MD5MD5 (PHP-Fusion) 哈希密码导入 Drupal 7
这里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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.