| Not logged in - | |
Come on over and join us at the new place- www.ultrabb.net/forum
|
| Moderated by: Jim |
|
||||||||||||||
| Unactivated accounts - Software Assistance - UltraBB - UltraBB Forums | |||||||||||||||
| Author | Post | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||
|
Mag License Holder
|
Is there somewhere where you can see when someone registered but hasn't activated their accounts? We usually give people 48 hours to do so and then zap them but I can't see the date that they registered. Mag Last edited on Sat Jul 5th, 2008 09:59 pm by Mag |
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Jim Administrator
|
Sure. Admin panel/users tab, Highlight the unactivated row and click users list.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
TVDinner Getting Fatter By The Minute
|
Jim wrote: Sure. Admin panel/users tab, Highlight the unactivated row and click users list. not sure if I mentioned that I love this feature. So much better then the old days of running multiple sql queries to see unactivated and the another to activate them, etc etc etc. Great feature.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Jim Administrator
|
One of the most requested features in the old days. I've tried to address a number of them.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Mag License Holder
|
Sorry Jim I didn't make myself clear. I saw the list but can't see anywhere that gives the date of registering.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
wingnutter Forever Learning
|
Here is the sql query Mag, for seeing unactivated members by date joined; SELECT user_name, user_email, user_joined FROM wowbb_users WHERE user_activation_key'' ORDER BY user_joined DESC
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
TVDinner Getting Fatter By The Minute
|
wingnutter wrote: Here is the sql query Mag, for seeing unactivated members by date joined; when doing sql queries be very careful..................
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
TheSnowHorse Esistenza รจ futile
|
TVDinner wrote: wingnutter wrote:Here is the sql query Mag, for seeing unactivated members by date joined; May I ask why? We do them all the time at work and nothing bad ever happens....
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Jim Administrator
|
SELECT user_name, user_email, user_joined FROM wowbb_users WHERE user_activation_key='' ORDER BY user_joined DESC Needs the equals sign to work. Since Ultra puts unactivated in group 1 you could use that in the where clause also. Example: SELECT user_name, user_email, user_joined FROM wowbb_users WHERE user_group_id=1 ORDER BY user_joined DESC
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
TVDinner Getting Fatter By The Minute
|
TheLoneStoner wrote: TVDinner wrote:wingnutter wrote:Here is the sql query Mag, for seeing unactivated members by date joined; Because YOU are not a beginner. But most/many forum owner ARE beginners or have no experience at all with SQL and you can completely screw up your entire board by messing up SQL quries.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Jim Administrator
|
SELECT is never dangerous unless you try to return all records in a very large table, it can bring MySQL to a screeching halt. If you were to ***DO NOT RUN THIS EXAMPLE*** "SELECT * FROM wowbb_search_index" on wingers board it would require a reboot. SELECT is generally not dangerous but be careful with DELETE FROM or TRUNCATE or UPDATE. One little slip and you will have to say "Jim I need a backup"
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
Mag License Holder
|
SELECT user_name, user_email, user_joined FROM wowbb_users WHERE user_group_id=1 ORDER BY user_joined DESC Thanks folks I did this one and it worked a treat.
|
||||||||||||||
| |||||||||||||||
| |||||||||||||||
|
wingnutter Forever Learning
|
I should have said that the sql's I have are from the WOW days and might need to be checked by Jim first. I've been using them without problems, but you never know.
|
||||||||||||||
| |||||||||||||||
| Current time is 05:39 am | |
| UltraBB Forums > UltraBB > Software Assistance > Unactivated accounts | |