Author |
Topic |
Chuck McB
Junior Member
WooYay
196 Posts |
Posted - 01 September 2003 : 22:07:34
|
quote: Originally posted by kirgy
Hi, i've modified this mod a little. So you can delete all users with 0 post. You have to check "Zeige nur Mitglieder, die keine Beiträge geschrieben haben" before you can see the delete button. Sorry, this files already german. WARNING I had never enough time to finish the code, it's not ready for real use. If you press "löschen" your data will be lost. You will not be asked to confirm that action. So make a backup to play around. I know most of the code is still chaos. Maby someone with mor time can use it to make a real working function from it. Download
Here it is. |
|
|
richfed
Average Member
United States
999 Posts |
Posted - 20 September 2003 : 05:38:37
|
quote: Originally posted by Rigger82
Has ANYONE gotten this mod modded to delete en masse? I have a TON of users and there is no way Im doing them one at a time.
Not me ... it works fine one at a time, but when I click on delete all inactive users it just seems to go through the motions. Nothing happens.
Help?
EDIT ----> Actually, now that I think about it, that is the E-mail All Inactive Users function that doesn't work on my forum. I don't think there is a mass delete option. |
Rich [size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1] |
Edited by - richfed on 20 September 2003 05:55:50 |
|
|
puzo
Junior Member
Israel
417 Posts |
Posted - 20 September 2003 : 06:29:26
|
Thank you very much Kirgy, ill try it. |
|
|
|
guessme
Banned User
393 Posts |
Posted - 20 September 2003 : 16:34:51
|
The fix for line 62 error is:
on error resume next intDaysOut = cint(trim(request.QueryString("intDaysOut"))) 'intDaysOut = request.QueryString("intDaysOut") 'intDaysOut = cint(intDaysOut) intEmailAll = cint(trim(request.QueryString("intEmailAll"))) |
|
Edited by - guessme on 20 September 2003 16:39:15 |
|
|
guessme
Banned User
393 Posts |
Posted - 30 October 2003 : 17:05:21
|
I'm getting this error and wonder if the fix for this is this:
You can delete line 114 it reads intLastRecord = intLastRecord + 1 to comment it out just put a ' infront of it.
Microsoft VBScript runtime error '800a0009'
Subscript out of range: 'i'
/Koji/admin_inactive_users.asp, line 121
|
|
|
|
sal
Starting Member
United Kingdom
17 Posts |
Posted - 05 December 2003 : 17:01:57
|
Type mismatch: 'cint'
/forum/admin_inactive_users.asp, line 62
I know there's been previous posts on how to sort this but
response.flush on error resume next intDaysOut = cint(trim(request.QueryString("intDaysOut"))) 'intDaysOut = request.QueryString("intDaysOut") 'intDaysOut = cint(intDaysOut) intEmailAll = cint(trim(request.QueryString("intEmailAll")))
hasn't worked for me. Any ideas. Thanks
|
http://www.mtb-freeride.com/community/forum/
|
|
|
NorwegianViking
Junior Member
Denmark
119 Posts |
Posted - 17 January 2004 : 04:07:04
|
Hi
First a great Thanks to Burt for this MOD.
The CINT error. This occures at line 62 and 63. Here is the fix:
Find these two lines. intDaysOut = cint(trim(request.QueryString("intDaysOut"))) intEmailAll = cint(trim(request.QueryString("intEmailAll")))
Replace them with these lines:
' REPLACED with the next two lines. intDaysOut = cint(trim(request.QueryString("intDaysOut"))) intDaysOut = request.QueryString("intDaysOut") intDaysOut = cint(intDaysOut) ' REPLACED with the next two lines. intEmailAll = cint(trim(request.QueryString("intEmailAll"))) intEmailAll = request.QueryString("intEmailAll") intEmailAll = cint(intEmailAll)
I have installed this MOD on Snitz v.3.4.04 (Access 2002), and it seems like it works fine. |
kind regards NorwegianViking
Mod installation for beginners | User registration problems?
|
Edited by - NorwegianViking on 17 January 2004 04:09:56 |
|
|
ebelthite
Starting Member
21 Posts |
Posted - 10 March 2004 : 04:59:46
|
I'm getting an error with the admin_inactive_users.asp
******************************* Inactive User List
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'cint'
/admin_inactive_users.asp, line 62
********************************* Using Snitz Forums 2000 Version 3.4.03
any ideas?
Ebel |
|
|
MarkJH
Senior Member
United Kingdom
1722 Posts |
|
KMC
Starting Member
40 Posts |
Posted - 21 May 2004 : 05:13:35
|
Is there a way to include the Lock Out feature in this MOD? It would be really great to have the option of locking users right from this area rather then only having the option delete. |
|
|
KMC
Starting Member
40 Posts |
Posted - 10 June 2004 : 13:01:53
|
quote: Originally posted by KMC
Is there a way to include the Lock Out feature in this MOD? It would be really great to have the option of locking users right from this area rather then only having the option delete.
Anyone??? |
|
|
ILLHILL
Junior Member
Netherlands
341 Posts |
|
Chuck McB
Junior Member
WooYay
196 Posts |
Posted - 14 January 2005 : 18:22:25
|
been using it for months, works fine for me. |
|
|
MarkJH
Senior Member
United Kingdom
1722 Posts |
|
Classicmotorcycling
Development Team Leader
Australia
2084 Posts |
Posted - 15 January 2005 : 17:05:23
|
I use this on my site once every 2 weeks and it works great. I give them 14 days to logon, and if they have not in that time, then I remove them, then send out the next lot of reminders. When I find out who has not been on for more than 120 days, I copy it in to Outlook Calendar and set a reminder for 14 days, and if those users are still there, then I remove them.
Dominic,
E-mail me and I will send you the copy I have that works great.
|
Cheers, David Greening |
|
|
Topic |
|