1

I am currently working with a Joomla 1.6 install and need to import about 500+ users from a completely separate database. Here's my dilemma:

I downloaded the DB as a CSV file, but the passwords are all just standard passwords, no encryption. I know that the passwords stored in the joomla user table is md5 + salt encrypted, so I am wondering how I could go about either importing this CSV into PHPMyAdmin with the correct encrypted password or run the CSV through some sort of extension (not finding many user migration/import extentions for 1.6).

Anyone have any ideas? This is the last thing holding me back from continuing with this project.

Thanks!

Fil

4

1 回答 1

1

实际上,您可以将密码插入为简单的 MD5 哈希,它仍然可以让用户登录,但建议通过前端系统更改密码,因为加盐密码更安全。这适用于 1.5 和 1.6。

http://docs.joomla.org/How_do_you_recover_your_admin_password

http://docs.joomla.org/Resetting_a_user_password

于 2011-04-27T03:33:04.897 回答