[]Hi Josh, I ran the query, and the number matches my ubbthreads.php page, not the index.php page. What does this mean?
[/]
That counted the users that are specifically tagged as "approved".
I'm guessing that you have users that aren't "approved". IIP is counting all users... threads is counting only approved users.
If you aren't using the approval feature... we should set them all to "yes".
Try running this query:
SELECT COUNT(*)
FROM w3t_Users
I'm guessing the number you match there will match that of IIP.
If that's the case... you have some unapproved users... possibly something went wrong with an upgrade or import.
You can set them all to approved by doing this query:
UPDATE w3t_Users
SET U_Approved = 'yes'
I'm guessing if you do that....the numbers will match.
