The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
User Powered Moderation System Lite (Post Management System) Details »» | |||||||||||||||||||||||||||
User Powered Moderation System Lite (Post Management System)
Developer Last Online: Feb 2008
What this hack does:
This hack allows your users to rate the individual posts in the threads so that they can effectively moderate them somewhat. By defualt posts with a negative rating thats below a predefined threshold (defined by admin) will be collapsed with an expand link there to show the hidden posts. Features: Admin Definable threshold *User definable threshold if enabled (will use the admin defined threshold as a fallback for if the user has no threshold defined) *Ability to define which usergroups posts can never be hidden by defualt *Ability to define which usersgroups posts may never be rateable Uses ajax to update the post rating so no page reloading. Has a fallback method for boards that dont use ajax and users that dont have javascript. Users who dont use javascript will still be able to rate the posts but they will not be able to use the toggle function to show or hide a post. Planned Additional Features: Ability to enable the system on a per forum basis Full usergroup permissions control A point system where users votes if enabled will no longer always be +/-1. The point system would basicly create a set of criteria similiar to the reputation system with a given value for each time a criteria is met and that value will effect their rating potential in either a possitive or negative way depending on what you have setup. Others that just havent been thought of yet. Some Background Information: This hack uses no queries to when displaying the posts. Infact the only queries in this system are done when a rating is added. Making this hack extremely server friendly. *professional version features. Version 1.0.1 Released Whats fixed? Fixed a bug regarding the private message system. How to upgrade? Just reload the plugin Edit: Missed the following two queries for the package for install so for now just run them in phpmyadmin replacing TABLE_PREFIX with your table prefix. SQL Query: (how to run queries) ALTER TABLE `TABLE_PREFIXpost` ADD `rating` INT( 10 ) NOT NULL DEFAULT '0'; CREATE TABLE `upms_posts` ( `pid` INT( 10 ) NOT NULL , `uid` INT( 10 ) NOT NULL , `value` VARCHAR( 10 ) NOT NULL , `ipaddy` VARCHAR( 50 ) NOT NULL ) ENGINE = MYISAM ; Note to not touch the table upms_posts as it is not designed to be prefixed for future reasons. Show Your Support
|
Comments |
#32
|
||||
|
||||
greatt I've been waiting forever for this
|
#33
|
|||
|
|||
The icons really jazz it up. If nothing else it makes it so that you can actually hit up or down.
|
#34
|
|||
|
|||
Nice hack, I'd love to see this one develop with even more features. I have tried to implement this somewhat using the rep system, but it has never worked out with rep power varying so much from user to user.
|
#35
|
||||
|
||||
After installing this I lost sigs.
Running vB 3.6.8 EDIT: I think the problem is the hack I installed that puts the sigs at the bottom of posts. It may be either the CSS for this or the <span tag. Picture below: EDIT: Nevermind. I was using span tags that messed up the tables....all OK now |
#36
|
|||
|
|||
Great Mod! Can someone provide instructions on how to make the mod use these "thumb" icons? I already downloaded the images... no what?
|
#37
|
||||
|
||||
Quote:
Edit the product called "EWT - User Powered Moderation System Lite" Go to "Styles & Templates" and select the Edit link for the template "ewt_upms_postlinks". This is where the html is for displaying info. Here's the code I use for my set up. You can probably adjust it to fit how you want to set it up. Also don't forget to upload the images found elsewhere in this thread. Code:
<span id="post_$post[postid]_hidden" $spanstyle class="smallfont">Post by $post[username] below threshold </span><a href="#post$post[postid]" onclick="alterpostdisplay('post_$post[postid]'); return false;" class="smallfont">Toggle</a> ($post[rating]) <span id="upms_$post[postid]"><a href="misc.php?do=upms_non_ajax&p=$post[postid]&ratingvalue=positive" onclick="upms_process('$post[postid]', 'positive'); return false;"><img src="images/up.png" border="0"></a> <a href="misc.php?do=upms_non_ajax&p=$post[postid]&ratingvalue=negative" onclick="upms_process('$post[postid]', 'negative'); return false;"><img src="images/down.png" border="0"></a></span> You can see the img src tags in there. The images are in the ./images folder for my set up. I also added parenthesis around the score and took out the brackets ("[ ]"). You'll need to play with it to get it to work for you. I hope this helps! You can see it running at http://www.politicalforums.net |
#38
|
||||
|
||||
The total number of the score is not updated with AJAX.
Is this ability only in the pro version? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|