Has anyone managed to migrate users from a Joomla site to Liferay? I had a look at the Joomla's user's table and i think its a bit difficult because the password is encrypted. Does anyone know if liferay use the same hash algorithm for encrypting the password?
Here is the jos_users table on a joomla site
mysql> describe jos_users;
+---------------+---------------------+------+-----+---------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------+---------------------+------+-----+---------------------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | MUL | | |
| username | varchar(150) | NO | MUL | | |
| email | varchar(100) | NO | MUL | | |
| password | varchar(100) | NO | | | |
| usertype | varchar(25) | NO | MUL | | |
| block | tinyint(4) | NO | | 0 | |
| sendEmail | tinyint(4) | YES | | 0 | |
| gid | tinyint(3) unsigned | NO | MUL | 1 | |
| registerDate | datetime | NO | | 0000-00-00 00:00:00 | |
| lastvisitDate | datetime | NO | | 0000-00-00 00:00:00 | |
| activation | varchar(100) | NO | | | |
| params | text | NO | | NULL | |
+---------------+---------------------+------+-----+---------------------+----------------+
13 rows in set (0.00 sec)
I dont know a lot about the liferay's users table. Do you think its possible or im i up for a few long nights in the next few days??
Please sign in to flag this as inappropriate.