The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#167
|
|||
|
|||
![]()
Zero Tolerance,
As I ... promised above, here is the outcome of our experiments with the hack and the discussion with our moderators: First of all, the hack is great and we all think it is a great addition to any forum. In the interest of seeing this hack becoming even better, we would like to see the following improvements, which will make the mods and admins life easier: 1. Each offence should have a points rating (as it does now), but should also include a "maturity" period. In other words, a period after which the points will automatically be removed from the user's record. 2. Each offence should have a check-box, which will define it as an "Instant Ban" offence. In that way, each forum can decide which offences carry the heavy penalty, of instant banning the member. 3. Each offence which is an "Instant Ban" offence, should also have a "Ban Duration" field. In that way, the admins can decide that offence A deserves a ban, but only for one month, while offence B is serious enough to deserve a permanent ban. So I assume the "Ban Duration" should accept values in days/weeks/months (whatever) plus the word "Permanent". A drop-down menu with 1,2,3,4 weeks, 1,2,3,4,5,6 months, and Permanent values, maybe. 4. Of course, cron jobs should exist, which will remove the points which mature from the member's record, and the bans which expire, automatically. 5. We would appreciate if the PM message could be in a more "customizable" format, so that we can tailor it to our needs. A template maybe? 6. The phrases and params used, should made "global" so that they can be used anywhere in the vB. For example, I have the Warn Points of each user shown in postbit, but I cannot use the "$warn_options[points_before_banned]" there. 7. In the hack's setup (in Admin CP), the admin should be able to define which groups will be able to see the "Warn User" and "View User's Warnings" links. For example, in our site, I have set it up so moderators can warn a user only in the forums they moderate, but they can see every user warnings. Registered users can see the Warnings of other users, as a number only in the forumbit, they cannot see the "Warn XYZ" or the "View XYZ's Warnings" links, so obviously they cannot warn anyone, nor can they see details of how that member earned those points. 8. In the PM send to the user, we would like to see the followings: - Who warned the member. - For which post (it might be a good idea if the post could be copied in the offence's record, since the moderator might want to remove it from the forums. Of course, the moderator has to first warn the member and then delete or edit the post). - Date and time. - What the offence was (the description of the warning). - How many points were awarded and what is the current total of the member. - When these points will be removed. - If the offence implied an "Instant Ban" and for how long. - What comments the moderator has added. - The e-mail of the admin or the super moderator, if the user has objections. I guess this is pretty much what we would like to see in this excellent hack. Finally, one other issue, for some reason, the redirecting screen does not always redirect. I am not sure what happens, but that page does not come up like any other redirecting page in vB, it comes up with header and navbar etc. and it just doesn't redirect. Any ideas? Kind regards, and again thanks for the lovely hack. John |
#168
|
|||
|
|||
![]()
It's a good hack but if you made the additions in the above post, it would be a great hack (using current version of it), you you upgrade it can you make an update installation also?
|
#169
|
||||
|
||||
![]()
sweet, works great on 3.0.3
|
#170
|
|||
|
|||
![]()
It all works for me but for another admin it just loads a blank page as she is going to warn someone please can someone tell me how to fix this.
|
#171
|
||||
|
||||
![]()
@hello - the Version here is more than buggy by now. Use this one and it works : https://vborg.vbsupport.ru/showpost....8&postcount=74
|
#172
|
|||
|
|||
![]() Quote:
|
#173
|
|||
|
|||
![]() Quote:
Zero Tolerance, you've done an excellent job with this hack. Only things that would make this flawless would be an option/template/phrase to edit the PM message and also a fix to the aforesaid "dropdown" box problem with the font being too big. But, 'nuff said. Excellent hack. ![]() |
#174
|
|||
|
|||
![]()
When a user is banned due to reaching the warning limit they are moved to the banned user group. When the ban expires (in my case, 7 days) which user group are they put back into?
|
#175
|
|||
|
|||
![]()
Also, another issue I found. For some reason the warnings links only work in one template vs. all. It's not the parent template either. If you use it from any other template you simply get a blank page.
|
#176
|
|||
|
|||
![]() Quote:
I just finished the final tweaks, and it works OK for me, but admitedly, I had to do a lot of changes to make it behave as I like. As for which group the banned users are put back in, I assume in Registered Users. I haven't banned anyone yet! :-) Rgds |
#177
|
|||
|
|||
![]()
I figured out the issue. It only had the templates inside the default template, which somehow ended up not being the master parent template. Needless to say the problem is now resolved.
![]() |
#178
|
||||
|
||||
![]() Quote:
We're having the problem where it won't change their title to 'banned' so its a little annoying. Also, what about accesses? As in, mods being able to warn in any forum even if they don't have control over it. Has this been adressed yet? |
#179
|
|||
|
|||
![]() Quote:
HTML Code:
<!-- checks for warning system --> <if condition="$post[usergroupid]!=6 AND $post[usergroupid]!=7 AND can_moderate($forum[forumid], '', $bbuserinfo[userid])"><a href='Warn.php?do=WarnUser&id=$post[userid]&post=$post[postid]'>Warn $post[username]</a> ? </if> <if condition="$post[usergroupid]!=6 AND $post[usergroupid]!=7 AND ($bbuserinfo[usergroupid]==7 OR $bbuserinfo[usergroupid]==6)"> <a href='Warn.php?do=ViewWarnings&id=$post[userid]'>View $post[username]'s Warnings</a> ?</if> <if condition="$post[userid]==$bbuserinfo[userid] AND $post[usergroupid]==2"> <a href='Warn.php?do=ViewMyWarnings'>View your Warnings</a> ?</if> <!-- end of warning system --> HTML Code:
<!-- checks for warning system --> <if condition="$post[usergroupid]!=6 AND $post[usergroupid]!=7 AND ($bbuserinfo[usergroupid]==7 OR $bbuserinfo[usergroupid]==6)"> <a href='Warn.php?do=WarnUser&id=$post[userid]&post=$post[postid]'>Warn $post[username]</a> ?<a href='Warn.php?do=ViewWarnings&id=$post[userid]'>View $post[username]'s Warnings</a> ?</if> <if condition="$post[userid]==$bbuserinfo[userid] AND $post[usergroupid]==2"> <a href='Warn.php?do=ViewMyWarnings'>View your Warnings</a> ?</if> <!-- end of warning system --> I haven't tried the second piece of code myself, but it should work for you. Please let me know if you have a problem. Rgds |
#180
|
|||
|
|||
![]()
Great hack! Thank you!
|
#181
|
||||
|
||||
![]()
I have a problem with this. In the admin CP-->Warning Options-->Warning Logs, whenever I click on Review Post or Remove Warning, it gives me a messed up link. Here's the problem:
the link for Remove is forums/index.php/Warn.php?do=(and so on for the warning ID stuff) and the ink for review post is forums/index.php/showthread.php?p=(number of post and such) Why is this happenning? It also happens if i go to User Warnings in a thread and try to see the post. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|