XF 2.3 how to find a permission group addon

briansol

Well-known member
Licensed customer
I have a rogue permission group entry that I don't know where it came from.

I do not have any flag or IP related addons. How do i find where this is coming from?


1772509733112.webp
 
Easiest way to find it would be to enable development mode.
Click on Permissions definitions

1772512744776.webp

Look for View county flag on post.

1772512869616.webp

Should tell you what addon the permission is coming from.
 
input type="radio" name="permissions[forum][viewCountryFlag]" value="allow"

I should see a forum category viewCountryFlag in my db, and i don't.



select * from xf_permission_entry_content where permission_id like '%Country%';
Empty set (0.000 sec)


select * from xf_permission_entry where user_group_id = 5 and permission_id like '%Country%' order by permission_entry_id desc limit 1000;
Empty set (0.001 sec)

select * from xf_permission_entry where user_group_id = 5 and permission_id like '%Flag%' order by permission_entry_id desc limit 1000;
Empty set (0.001 sec)
 
looks like this is from DP CF addon, which i do have, so it's legit.

 
Back
Top Bottom