|
|
|
Re: Karma/user reputation patch |
Sun, 05 May 2013 22:45 |
|
naudefj wrote on Fri, 20 April 2012 14:42The Karma/user reputation patch was committed and will be part of FUDforum 3.0.4. To enable it, navigate to the Global Settings Manager and change "Karma" from "no" to "yes".
in my 3.0.4 my karma shows up, but does not seem to do anything when clicking the +1 or -1, the +1 and -1 disappear, but nothing gets added to the users karma rating
|
|
Re: Karma/user reputation patch |
Wed, 06 March 2013 12:41 |
|
I have discovered that users were to able vote repeatedly for the same message under certain conditions.
Attached is a patch which will fix that and allows only one vote per message per user.
|
|
Re : Re: Karma/user reputation patch |
Sun, 03 February 2013 19:02 |
|
Thanks for the inclusion of this patch in the code base.
This may be a good basis to implement a future REDDIT-like comment ranking mechanism, that I will describe later in FUDforum Suggestions.
|
|
Re: Karma/user reputation patch |
Sat, 29 September 2012 16:49 |
|
hi!
I have a question about mod
I check enable on the Karma in settings..ok, I see +1 -1 in every message..but i can't see quantity of Karma in message and under user avatar
can you help me, please?
|
|
Re: Karma/user reputation patch |
Fri, 20 April 2012 14:42 |
|
The Karma/user reputation patch was committed and will be part of FUDforum 3.0.4. To enable it, navigate to the Global Settings Manager and change "Karma" from "no" to "yes".
|
|
|
|
Re: Karma/user reputation patch |
Thu, 19 April 2012 09:24 |
|
I've applied your patch, but cannot see any up and down rating links/buttons. CSS declarations for "a.up" and "a.down" are never used. Can you please post the missing code as well?
|
|
|
|
|
Karma/user reputation patch |
Fri, 30 March 2012 10:54 |
|
Hi,
I've created a small patch to add karma feature into current FUDforum 3.0.3. Initially I thought it should be a plugin, but it turned out to be easier to write a patch.
The patch require modification of the database (attached SQL script) and some new messages (also in the patch)
Features:
* full AJAX support (no page reloads)
* use current Rate Topic and Can rate permissions
* users with "can rate" permission can add +1 or -1 to the author of the post
* author can't change karma for own posts
* forum admin can remove karma rating (click on Karma counter next to the user)
Installation:
1. install FUDforum 3.0.3
2. edit attached fudforum_karma.sql to match your table prefix (it's on default fud30_)
3. import fudforum_karma.sql - 'mysql -p <database_name> < fudforum_karma.sql'
* this will add new table karma_rating_track and also add new column to the users table (named karma)
4. apply patch to forum files in web directory (default /var/www/html/fudforum) by 'patch -p0 < fudforum_karma.patch'
5. apply patch to forum data folder (default /var/www/FUDforum) by 'patch -p0 < fudforum_karma_datadir.patch'
6. login to forum administration and rebuild default theme. You should see "Karma: 0" next to user avatar. Works only for default theme.
|
|