Jump to content
DevFuse Forums

How do I see how many users use each skin?


Recommended Posts

Go to you ACP > Support > SQL Toolbox and run the following SQL statement:

 

SELECT skin, COUNT(member_id) AS used_by FROM ibf_members GROUP BY skin

 

It will most probably return users using skin id 0 and also NULL skin. These are people that were using a skin that no longer exists in your forum.

 

Eg this statement returns in my case the following:

 

skin -> used_by

... -> 86

0 -> 39

1 -> 2169

13 -> 2

14 -> 3

16 -> 1

 

Now all you have to do is sum the people for the NULL and 0 'skins' to the people of your default skin (in my case it is id 13) and you end up with the correct statistics.

Edited by PrinceOfAbyss
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...