ATTN Kuroneko: BoU usergroup bug

J-M v2.5.5

BANNED
BANNED
Joined
Feb 26, 2005
Messages
5,675
Reaction score
1
Age
36
Location
Nijmegen, the Netherlands.
Whenever I check out the BoU usergroup to add someone or to ask myself "Why do people always choose different aliases in-game and in the forums?", I see this:
forum_usergroup_bug.png

There's some mystery non-existant user in my group. Whenever I try to delete this person, I am informed that "The requested user does not exist."

mind = blown

I'm not sure if this is a problem because (as far as I can tell) nothing bad is happening, but I just figured I'd throw it out here anyway.
Are there other usergroup leaders who have similar issues?
 

Thothie

Administrator
Staff member
Administrator
Moderator
MSC Archivist
Joined
Apr 8, 2005
Messages
16,342
Reaction score
326
Location
lost
I don't see that in any of the groups I've control over, but it maybe that the user was deleted, thus leaving an invalid reference in the usergroup data.
 

Echo717

New Adventurer
Socialist Guild
Joined
Aug 22, 2008
Messages
698
Reaction score
2
Age
32
Location
Arizona
I have this as well, I always presumed it was a spy
 

zeus9860

Active Adventurer
The True Followers of the Lost
Crusaders
Blades of Urdual
Alpha Tester
Joined
Feb 28, 2008
Messages
2,581
Reaction score
37
Age
32
Location
lolwut
It's a spy sappin your guild usergroup! Or maybe it's a birthday gift from someone xD
 

Kuroneko

New Adventurer
MSC Developer
Joined
Jul 18, 2004
Messages
998
Reaction score
1
Location
Pittsburgh, Pennsylvania
Well, I took a look at both groups and don't see any missing entries or other erroneous items. If you could give me a full list of who you see, I may be able to figure out who it is by process of elimination
 
  • Thread starter
  • Banned
  • #6

J-M v2.5.5

BANNED
BANNED
Joined
Feb 26, 2005
Messages
5,675
Reaction score
1
Age
36
Location
Nijmegen, the Netherlands.
Here's the full list.
There's 40 people in BoU, myself included, and the list shows 41 people, myself included. That's because one guildmember has two forum accounts and I forgot which one he uses:

forum_usergroup_bug02.png
 

Kuroneko

New Adventurer
MSC Developer
Joined
Jul 18, 2004
Messages
998
Reaction score
1
Location
Pittsburgh, Pennsylvania
Checked that list against the one I see, no omissions or excess entries. On a hunch, I did a database query for all users in the group and got the expected 41 results. I have no idea what causes you to see an extra blank entry. =\
 

Echo717

New Adventurer
Socialist Guild
Joined
Aug 22, 2008
Messages
698
Reaction score
2
Age
32
Location
Arizona
YpSHr.png

19 members, 2 without forum accounts
 
  • Thread starter
  • Banned
  • #9

J-M v2.5.5

BANNED
BANNED
Joined
Feb 26, 2005
Messages
5,675
Reaction score
1
Age
36
Location
Nijmegen, the Netherlands.
Kuroneko said:
Checked that list against the one I see, no omissions or excess entries. On a hunch, I did a database query for all users in the group and got the expected 41 results. I have no idea what causes you to see an extra blank entry. =\
Oh well. Right now, I have no reason to believe that there's an actual problem, so I guess it's no big deal.
 

cartman-2000

New Adventurer
Blades of Urdual
Joined
Jun 6, 2010
Messages
160
Reaction score
0
Age
39
Location
Beaverton, Oregon
This is phpbb's query to query members from the db, if it doesn't come back with an extra record with that, then it might be some bug with how php or mysql works on this server. I don't get anything like this on my own forums.

For querying BoU members(not the leaders.).
Code:
SELECT u.user_id, u.username, u.username_clean, u.user_colour, u.user_regdate, u.user_posts, u.group_id, ug.group_leader, ug.user_pending
FROM phpbb_users u, phpbb_user_group ug
WHERE ug.group_id =892
AND u.user_id = ug.user_id
AND ug.group_leader =0
ORDER BY ug.user_pending DESC , u.username_clean
LIMIT 25
 

Kuroneko

New Adventurer
MSC Developer
Joined
Jul 18, 2004
Messages
998
Reaction score
1
Location
Pittsburgh, Pennsylvania
cartman-2000 said:
This is phpbb's query to query members from the db, if it doesn't come back with an extra record with that, then it might be some bug with how php or mysql works on this server. I don't get anything like this on my own forums.

For querying BoU members(not the leaders.).
Code:
SELECT u.user_id, u.username, u.username_clean, u.user_colour, u.user_regdate, u.user_posts, u.group_id, ug.group_leader, ug.user_pending
FROM phpbb_users u, phpbb_user_group ug
WHERE ug.group_id =892
AND u.user_id = ug.user_id
AND ug.group_leader =0
ORDER BY ug.user_pending DESC , u.username_clean
LIMIT 25

I already checked the query and the database, there are no extra records. I also looked at the same pages they looked at, and don't see extra records. It doesn't make a whole lot of sense
 
Top