Is there a way to list the number of active users in the past 30 days, i.e. they logged in at least once? I need this information to begin a fundraising campaign.
rob
Thanks
rob
Thanks
This section is an archive with no posting allowed. The software represented in this forum is no longer supported or updated. If you need help upgrading to a newer version of vBulletin please open a support ticket. You can also post in the section supporting the upgrade version you're planning to use.
We are sorry for any inconvenience this may cause.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
SELECT username FROM user WHERE lastvisit > unix_timestamp(now()) - 2592000
SELECT COUNT(username) FROM user WHERE lastvisit > unix_timestamp(now()) - 5184000AND lastvisit < unix_timestamp(now()) - 2592000
Comment