Author |
Topic  |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 30 November 2002 : 00:03:21
|
Mod Link: Mod User level Moderation
Plaese post your questions for this Mod within this topic only.
Thanks! |
|
Rackne
Starting Member
United Kingdom
8 Posts |
Posted - 01 December 2002 : 08:05:09
|
Repeating myself from the other topic.... I installed the mod, the option to select new user moderation only appears in the topic properties, I selected it and the topic still insists on moderating every post.
Help!  |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 01 December 2002 : 17:47:42
|
Step 4. I made a small change to fix this problem. Please check step 4 for required changes in the Mod Instructions. |
 |
|
NightStorm
Starting Member
4 Posts |
Posted - 03 December 2002 : 03:36:25
|
I want to hard-code mine so that it only moderates people for their first 2 posts (most spammers and trouble-makers on my board don't stick around much longer than that). Here is what I entered in step 4 (post_info.asp). Is this correct, or am I missing something?
elseif (ForumModeration = 9) and (numMPostCount < 2) then
Moderation = "Yes" Thanks for any help you can offer... this is a phenominal idea. |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 03 December 2002 : 07:05:39
|
should be less than 3 for your objective.
elseif (ForumModeration = 9) and (numMPostCount < 3) then
Moderation = "Yes" |
 |
|
NightStorm
Starting Member
4 Posts |
Posted - 03 December 2002 : 13:15:17
|
Heh... yeah, I'm Mr "I need to start sleeping more than 3 hours a day". 3 works. As long as I had the right idea. Although moderating their very first post wouldn't have done too much, would it? Again, thanks a lot.  |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 03 December 2002 : 13:28:06
|
Moderating first 2 posts wouldn't do much either. Anyway...you are welcome  |
 |
|
Cliff
Average Member
  
United States
501 Posts |
Posted - 29 December 2002 : 22:23:42
|
This is a terrific MOD, and it was way too easy to install. 
What is considered a new user? Is it the value we set for "New Member"? If so, mine is set to 50, decreased from the Snitz defualt. I use this on low volume sites, yikes this would moderate many posts. I guess I'd need to adjust the new member number. |
https://squarewheelscycling.com/
https://www.pathlabtalk.com/ |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 30 December 2002 : 08:00:40
|
Updated: To use intRankLevel0 (Starting Member) for Moderation instead of intRankLevel1 (New Member). Link for Complete Mod instructions posted in the first post in this topic. |
 |
|
richfed
Average Member
  
United States
999 Posts |
Posted - 18 January 2003 : 19:38:48
|
I have this mod installed, but just noticed you made some changes/additions on Dec. 30. A couple of questions regarding these ...
1 - I made the change to post_info.asp. Will that work without the changes to admin_config_ranks.asp?
2 - What do the changes to admin_config_ranks.asp do? And, how do I implement them if I already have your Stars Level mod installed?
|
Rich [size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1] |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 21 January 2003 : 13:21:27
|
1. You need to make changes to admin_config_ranks.asp 2. That sets the level to compare. Make the changes as suggested. Should work without having any effect on functinality of Mod Stars Setup.
If you get any errors after making changes then post here.
Make backup of your files always and do it before starting to do the modifications. |
 |
|
richfed
Average Member
  
United States
999 Posts |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 21 January 2003 : 18:58:29
|
It is okay. I am Glad you got it working. |
 |
|
dayve
Forum Moderator
    
USA
5820 Posts |
Posted - 13 February 2003 : 20:13:31
|
I should have posted this here instead....
Found A Bug. The Moderation Icons will NOT show in default.asp and active.asp when this mod is used. The following changes must be made in order for one to be aware that there are posts needing moderation:
inc_moderation.asp
Find this line:
strSql = strSql & " AND T.FORUM_ID = F.FORUM_ID AND F.F_MODERATION in (1,2)" & " AND T.T_STATUS > 1 "
and change it to this:
strSql = strSql & " AND T.FORUM_ID = F.FORUM_ID AND F.F_MODERATION in (1,2,9)" & " AND T.T_STATUS > 1 "
Find this line:
strSql = strSql & " AND R.FORUM_ID = F.FORUM_ID AND F.F_MODERATION in (1,3)" & " AND R.R_STATUS > 1 "
and change it to this:
strSql = strSql & " AND R.FORUM_ID = F.FORUM_ID AND F.F_MODERATION in (1,3,9)" & " AND R.R_STATUS > 1 " |
|
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 13 February 2003 : 21:08:40
|
Seems you are correct davye. |
 |
|
|
Topic  |
|