User count

voytechs - April 4, 2009 - 18:31

I've been trying to find out how many users my site has. I can get the list of users, but not a single counter that says that many users are registered. Anyone know where I can look? I don't like counting pages and individual users.

=-=

VeryMisunderstood - April 4, 2009 - 18:39

One of the contrib modules you may want to investigate is the: Hall of Fame module. It may fit your requirements

other modules may be investigated here: http://drupal.org/taxonomy/term/119

Hackery

grobemo - April 4, 2009 - 18:57

If you just want a quick, one time check, you could also execute this code (either by including it in a node with input format set to PHP or by using the 'Execute PHP Code' link in the Devel module):

<?php
 
print 'This site has '. db_result(db_query('SELECT COUNT(uid) FROM {users}')) .' users.';
?>

Ask and ye shall receive, apparently...

grobemo - April 10, 2009 - 12:40

yelvington just released a new module called Usercount. If it doesn't already do what you want, you can submit a feature request.

 
 

Drupal is a registered trademark of Dries Buytaert.