Page MenuHomePhabricator

SUL Info results incorrect for specific user
Closed, DeclinedPublic

Description

It seems that the SUL info at https://tools.wmflabs.org/quentinv57-tools/tools/sulinfo.php?username=Jan.Kamenicek is incorrect. I did not check all of it, but I noticed that it says I have 3 edits at simple.wiki, while in fact there are 12. This is just a minor issue, but I suppose that other counts could be wrong as well.

Event Timeline

Jan.Kamenicek raised the priority of this task from to Low.
Jan.Kamenicek updated the task description. (Show Details)
Jan.Kamenicek subscribed.
Aklapper renamed this task from SUL Info to SUL Info results incorrect for specific user.Apr 13 2015, 11:50 AM
Aklapper set Security to None.

This data comes from user.user_editcount in the wiki's database:

MariaDB [simplewiki_p]> select user_id, user_editcount from user where user_name = 'Jan.Kamenicek';
+---------+----------------+
| user_id | user_editcount |
+---------+----------------+
|   22121 |              3 |
+---------+----------------+
1 row in set (0.01 sec)

MariaDB [simplewiki_p]> select count(*) from revision_userindex where rev_user = 22121;
+----------+
| count(*) |
+----------+
|       12 |
+----------+
1 row in set (0.01 sec)

So probably something wrong in MediaWiki itself?

Declining as project has been deleted. See T301116 for more info.