Log in

View Full Version : Way to tell who or how many are using which styles?


Teresa
02-19-2009, 06:56 PM
Is there a way to tell who or how many people are using a particular style? I'd like to drop one, but I don't know if it's popular or not.

Thanks.

DragonBlade
02-19-2009, 07:13 PM
Well, you could always do a MySQL query (in the AdminCP, go to Maintenance, select "Execute MySQL query" (you might have to be set as a user in the config.php to do so if you are not already--I can't remember if that's in the config.php or the regular Admin permissions, tbh).

The query you'd be wanting to execute is:
SELECT COUNT(*) AS num_users FROM user WHERE styleid=12345

Replace 12345 with whatever styleid is your Style.

--------------- Added 1235078143 at 1235078143 ---------------

As an addendum, there is a useful Stats tool we just installed on our own forums that has this and other useful information. You may want to try it: psiStats 2009 (https://vborg.vbsupport.ru/misc.php?do=producthelp&pid=psistats)

Teresa
02-19-2009, 09:43 PM
Brilliant! Thanks.