PatPeter
Member
Hi everyone,
I'm trying to mirror a personally-managed database called roster with the user groups in XenForo. Here's an example of my query:
UPDATE xenforo.xf_user xu
LEFT OUTER JOIN roster.member rs
ON (xu.user_id = rs.forums_id)
SET user_group_id = 13, secondary_group_ids = "2,14,15"
WHERE rs.rank_id = 4;
I ran this query, and I'm seeing the values correctly populated in the database. However, none of my users have their Title set to the title of their new user group.
How do I refresh XenForo so that it properly displays ranks changed in the database and not on the backend? I need to have this done by Friday so any and all help is appreciated.
I'm trying to mirror a personally-managed database called roster with the user groups in XenForo. Here's an example of my query:
UPDATE xenforo.xf_user xu
LEFT OUTER JOIN roster.member rs
ON (xu.user_id = rs.forums_id)
SET user_group_id = 13, secondary_group_ids = "2,14,15"
WHERE rs.rank_id = 4;
I ran this query, and I'm seeing the values correctly populated in the database. However, none of my users have their Title set to the title of their new user group.
How do I refresh XenForo so that it properly displays ranks changed in the database and not on the backend? I need to have this done by Friday so any and all help is appreciated.