Dear mediawikis,
We run a MediaWiki.
For each of our users, we would like to get a list of IP addresses that the user has used while logged in (or logged in from).
Is this possible? If so, how?
(I'm sure this has been answered already, but my Google-fu is failing me, so my apologies if this is a duplicate.)
Thanks,
Reid
Reid,
That is done with the checkuser extension:
http://www.mediawiki.org/wiki/Extension:CheckUser
Fred
Dear mediawikis,
We run a MediaWiki.
For each of our users, we would like to get a list of IP addresses that the user has used while logged in (or logged in from).
Is this possible? If so, how?
(I'm sure this has been answered already, but my Google-fu is failing me, so my apologies if this is a duplicate.)
Thanks,
Reid
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On 09/04/2009 02:52 PM, Fred Bauder wrote:
Reid Priedhorsky wrote:
We run a MediaWiki.
For each of our users, we would like to get a list of IP addresses that the user has used while logged in (or logged in from).
Is this possible? If so, how?
(I'm sure this has been answered already, but my Google-fu is failing me, so my apologies if this is a duplicate.)
That is done with the checkuser extension:
Thanks, Fred.
I'm happy to dig around in the database - that is preferred, actually.
We're interested in each IP that each user has *used*, whether viewing, editing, or anything else. Looking in the database schema, this does not appear to be possible... am I wrong?
Thanks,
Reid
Reid Priedhorsky wrote:
Thanks, Fred.
I'm happy to dig around in the database - that is preferred, actually.
SELECT rc_ip FROM recentchanges; If you install CheckUser, it logs into its own table.
We're interested in each IP that each user has *used*, whether viewing, editing, or anything else. Looking in the database schema, this does not appear to be possible... am I wrong?
Thanks,
Reid
The edits are only recorded when they actually *did* something. You can always add code for more draconian logging, or combine with server logs, though.
mediawiki-l@lists.wikimedia.org