-
Notifications
You must be signed in to change notification settings - Fork 35
Joomla
Joomla (3.9) example preset
The Joomla table prefix should also be given in this case it is 'jos'. I’m not sure if other CMS also uses prefix in the table names?
Hash algorithm: Blowfish (there is a 'Joomla md5 encryption' but that didn`t work for me)
Reverse active column: checked
Usertable
Table name: jos_user
Email: email
Password: password
Display name: name
Active: blocked
Grouptable
Table name: jos_groups
Group name: title
User group table
Does only exist with ID numbers so we need to generate a view for this:
Create view Joomla_NC_groupmapping AS selectjos_users.usernameASusername,groups.titleASgroupnamefrom ((jos_usersjoinjos_user_usergroup_mapmapon((jos_users.id=map.user_id))) joinjos_usergroupsgroupson((groups.id=map.group_id))) order byjos_users.username``
Table name: Joomla_NC_groupmapping
Username: username
Group name: groupname
Above configuration settings for Joomla can be used in the documentation as well (for the time being?) so that other Joomla and NC user don`t have to re-event.