Reputation: 3331
I would like to know if there is a way to add some data to users in joomla 1.6. For example I have data website that should gather data using a different database for each user. I would like to store the database informations (user, pass, db) for each of them to then load a user specific page (you know, google, facebook, etc way).
In Concrete5 you can add "attributes" to users, which could be a good way in joomla?
Upvotes: 0
Views: 1984
Reputation: 1697
Perhaps this is what you are looking for: http://docs.joomla.org/Creating_a_profile_plugin
Upvotes: 1
Reputation: 6969
Not sure if you found solution or not BUT...
You need to populate the following tables:
Add user to: jos_users
Assign the user aro: jos_core_acl_aro
Create relation between aro and user group: jos_core_acl_groups_aro_map
Upvotes: 0
Reputation: 763
There is a table called
jos_user_profiles
This has the fields:
user_id, profile_key, profile_value, ordering
Seem's like this is the table your data should be stored in. Don't know if there's a function for that in the backend.
Upvotes: 1