Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Moderator Tasks 1.1
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

Freeman II
Junior Member

232 Posts

Posted - 05 July 2001 :  23:34:30  Show Profile
This mod allows admins to assign task to moderators.
Download

the instructions are in the zip file

this is my first mod, let me know what you think about it


Screenshots

ADMIN
http://www.geocities.com/scfff2/shot1.jpg

Moderator
http://www.geocities.com/scfff2/shot2.jpg

Edited by - freeman II on 06 July 2001 14:35:29

Edited by - freeman II on 06 July 2001 14:38:01

big9erfan
Average Member

540 Posts

Posted - 06 July 2001 :  01:09:45  Show Profile
Thanks for the work around on the dl Richard.

Freeman,
Some screen shots of what this mod does, a demo, or a more indepth explaniation would be really nice. I may be interested in using this mod, but since I really have no idea what kind of tasks can be assigned to Mods, or how, I am a bit reluctant to implement this yet.



http://www.ugfl.net/forums

Edited by - Big9erFan on 06 July 2001 02:19:26
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 06 July 2001 :  01:12:05  Show Profile
If you go here: http://www.geocities.com/scfff2/

and then click on the file, you can download it that way.
Go to Top of Page

Freeman II
Junior Member

232 Posts

Posted - 06 July 2001 :  14:11:02  Show Profile
hmm can you guys see those screenshots?

Go to Top of Page

stuF
Average Member

United Kingdom
561 Posts

Posted - 06 July 2001 :  14:31:22  Show Profile  Visit stuF's Homepage
do we get anymore clues as to what exactly it does...?

Go to Top of Page

RDoGG™
Junior Member

USA
329 Posts

Posted - 06 July 2001 :  16:02:52  Show Profile  Visit RDoGG™'s Homepage  Send RDoGG™ an AOL message  Send RDoGG™ a Yahoo! Message
quote:

do we get anymore clues as to what exactly it does...?





pretty cool...just look at screen shots:

shot1.jpg and shot2.jpg

RDoGG™
Go to Top of Page

gglosser
Starting Member

16 Posts

Posted - 06 July 2001 :  16:43:14  Show Profile  Visit gglosser's Homepage
quote:

quote:

do we get anymore clues as to what exactly it does...?





pretty cool...just look at screen shots:

shot1.jpg and shot2.jpg

RDoGG™



It is not clear to me what this MOD does. An explanation would be appreciated.

Gisele

Go to Top of Page

stuF
Average Member

United Kingdom
561 Posts

Posted - 06 July 2001 :  16:45:54  Show Profile  Visit stuF's Homepage
it just allows you to make a diary sort of thing to tell mods/admins what needs doing...ill be using it to keep track of nasty peoples IPs, so the mods can be alert, and to tell them when an update will be happening so theyre aware of it before hand.

Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 06 July 2001 :  16:58:19  Show Profile  Visit HuwR's Homepage
quote:

This mod allows admins to assign task to moderators.
Download

the instructions are in the zip file

this is my first mod, let me know what you think about it


Screenshots




A nice mod, however, if you are going to use the mod_dbsetup, please try not to supply a different one than the currently available one, it is hard enough supporting the versions as it is. You should supply it as is, and you should not claim it is part of the mod if all you have done is changed the name.


Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 06 July 2001 :  17:31:49  Show Profile
Hello,

Found some error in the code that you may wish to fix.

The following lines where looking in the wrong place for data;

In admin_mod_tasks_new.asp the following;

strSql = "INSERT INTO MOD_TASKS ("


change it to

strSql = "INSERT INTO FORUM_MOD_TASKS ("


I also found the following in admin_mod_tasks_edit.asp;

strSql = "UPDATE MOD_TASKS "


to

strSql = "UPDATE FORUM_MOD_TASKS "


and also this in the same file;

strSQL = "SELECT TASK_ID, SUBJECT, COMPLETED, DUE_DATE, PRIORITY, MEMBER_ID, BODY, SHOW FROM MOD_TASKS WHERE TASK_ID ="& tasknumber


to this

strSQL = "SELECT TASK_ID, SUBJECT, COMPLETED, DUE_DATE, PRIORITY, MEMBER_ID, BODY, SHOW FROM FORUM_MOD_TASKS WHERE TASK_ID ="& tasknumber


While in admin_mod_tasks_review.asp the following;

strSQL = "DELETE FROM MOD_TASKS WHERE TASK_ID IN (" & strDeleteList & ")"


Changed to

strSQL = "DELETE FROM FORUM_MOD_TASKS WHERE TASK_ID IN (" & strDeleteList & ")"


and

strSQL = "SELECT TASK_ID, SUBJECT, COMPLETED, DUE_DATE, PRIORITY, MEMBER_ID, SHOW FROM MOD_TASKS ORDER BY PRIORITY DESC"


had to be changed to;

strSQL = "SELECT TASK_ID, SUBJECT, COMPLETED, DUE_DATE, PRIORITY, MEMBER_ID, SHOW FROM FORUM_MOD_TASKS ORDER BY PRIORITY DESC"


Just thought that I would let you know that you need to include FORUM_ before all of the MOD_TASKS in each of those files.

Apart from that, looks like a nice mod..

Regards,

Webmaster @ Classic Motor Cycling
Classic Motor Cycling

Edited by - Classicmotorcycling on 06 July 2001 17:37:50
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 06 July 2001 :  17:44:25  Show Profile  Visit HuwR's Homepage
instead of adding FORUM_ you should use the forum variable strTablePrefix, not everyone uses the default value of FORUM_

Go to Top of Page

Freeman II
Junior Member

232 Posts

Posted - 06 July 2001 :  17:52:48  Show Profile
you wouldn't need to do the changes if you used the mod db setup file supplied with this mod.

HuwR this is a customized version of mod_dbsetup.asp, like the link manager, it doesn't use strTablePrefix

Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 06 July 2001 :  17:53:44  Show Profile
Good point. Just not that advanced with the programming. But, yes all use the variable as HurW suggests.

You may need to go through all files included in this mod and change them where it calls on the database. I found more.

quote:

instead of adding FORUM_ you should use the forum variable strTablePrefix, not everyone uses the default value of FORUM_





Regards,

Webmaster @ Classic Motor Cycling
Classic Motor Cycling
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 06 July 2001 :  18:46:42  Show Profile  Visit HuwR's Homepage
quote:

Good point. Just not that advanced with the programming. But, yes all use the variable as HurW suggests.



Instead of inserting FORUM_ in the strings, insert this instead

" & strTablePrefix & " make sure it is imediatly before the table name ie

this
strSql = "INSERT INTO MOD_TASKS ("
becomes
strSql = "INSERT INTO " & strTablePrefix & "MOD_TASKS ("

Go to Top of Page

Freeman II
Junior Member

232 Posts

Posted - 06 July 2001 :  22:39:30  Show Profile
did you guys find any bug?
if you did please post it, ill fix it and reupload the file

Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 07 July 2001 :  03:31:55  Show Profile
Yes,

When I first put your MOD (which is quote handy) in, I kept getting ODBC errors. Then when I changed to the have the
FORUM_
before the call of database items, it worked. Now as that most people will not use another db setup script, I thought it would be nice to let them know about what was needed to fix it, when HuwR told me a better way of doing it. But like I said, great MOD. Good job..

quote:

did you guys find any bug?
if you did please post it, ill fix it and reupload the file





Regards,

Webmaster @ Classic Motor Cycling
Classic Motor Cycling
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07