Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
let users delete their own account
how would I make it possible for users to remove their own account?
Maybe a way to do it via a URL and a confirm screen after that?
0
This discussion has been closed.
Comments
If you're simply looking at it in terms of user activity, you can go about it another way without having to delete users at all and simply rely upon the DateLastActive column in the LUM_Users table. This way you can sample the current date and look back over X number of days to get your relevant data based on that result without having to delete anything. That way if say a user hasn't been active in 6 months, they've probably forgotten so mailing them or contacting them might be futile. However there's still a small chance they will return to your forum for whatever reason later remembering they have an account and use their login to find it's still there for them.
In short: deleting users is a bad idea.
I still can't understand why an extension can't do the same thing?
Posted: Wednesday, 25 July 2007 at 7:56AM
A few turned out to be spammers which I did not want any record of under any role.
Posted: Wednesday, 25 July 2007 at 1:31PM
Unless you don't want any members who don't recieve the newsletter--In which case, you can use a SQL SELECT email FROM LUM_User WHERE RoleID != [whatever your banned role ID is] to get a list of current member's emails.