MyBB Community Forums

Full Version: Additional Admin Control Panel Functions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the Admin Control Panel, under "Quick Search and Listing Options," the control panel can sort the list of forum users by the following criteria:

* List All Users
* List Top Posters
* List New Registrations
* List Users Awaiting Activation

It would be useful, at least to myself and perhaps to others, as well, if there were some additional sort criteria to choose from, such as:

* List by Time Spent Online
* List Number of Times Visited (Not sure if this is possible)

The amount of time spent online is useful, but currently I have to pull up each forum member individually. That makes it very time consuming to do.

Some users, however, may visit frequently, but not spend much time logged on during each visit.

Yet, I consider both criteria to be valuable, when trying to weed the user base for inactivity.

Thanks in advance for any consideration.
For the first, you can run the query:
SELECT * FROM mybb_users ORDER BY timeonline DESC
The time spent online isn't exactly accurate though - ie, if someone leaves a tab open on the Who's Online List, the thing will keep refreshing, and your board will think that they're always online. Similar things for whatever auto-refreshes, ie shoutboxes.

The second isn't possible, as it's not recorded Toungue
ZiNga BuRgA Wrote:For the first, you can run the query:
SELECT * FROM mybb_users ORDER BY timeonline DESC

Can I run that query from the MyBB admin control panel?
If you install this [ http://mybbcentral.com/showthread.php?tid=4 ], yes.