I see the info repeat twice in the author area, as I use the alpha version that is available in the download section. So I tried downloading what's in trunk, but that was an endless line of errors, missing files, missing backpress etc. I suppose I'm downloading from the wrong place or something, but how do I download it correctly?
bbPress Plugin Browser »
Reputation (Karma) for bbPress (0.0.6)
Download
Version: 0.0.6
Last Updated: 2009-3-11
Requires bbPress Version: 0.8.3 or higher
Compatible up to: 0.9
Average Rating





Your Rating
Author: _ck_
-
Posted: 3 years ago #
-
You can't download the alpha without using subversion so it also downloads backpress.
You didn't need to upgrade either, you could have just edited the one line too.
http://trac.bbpress.org/ticket/940
http://trac.bbpress.org/changeset/1661Posted: 3 years ago # -
On my forums all the users start out with completely random points, is there a way to reset it?
EDIT: When ever some one posts they get a point, is there a a way to get rid of this?
Posted: 3 years ago # -
Yes please read the instructions and previous posts. You can edit the plugin to assign zero points per post and that point donations come from an imaginary source and how many points they can donate per rep.
Posted: 3 years ago # -
Hi _ck_,
I've installed and activated the plugin and adjusted the settings as instructed however when I click on the + sign fto assign points to one of my members, it just takes me down to the bottom of the page. I've made the selection to allow users to choose how many points to give so a pop-up window should open shouldn't it?
I've seen this plugin working on another BBpress forum so I know it's OK. Just wondering what might be causing it to do this on my forum? Is this plugin known to conflict with any others?
Thanks.
Posted: 3 years ago # -
iEmpower, if you are using a custom theme, you must make sure you have the same standard do_action calls as the default theme.
Look at kakumei and make sure you have the same
do_action('bb_foot','');that it does infooter.phpPosted: 3 years ago # -
_ck_ that worked beautifully! You do such a great job with all these plugins. Let me know if you've got a PayPal account and I'll send some 'spendable' Karma points your way. Cheers!
Posted: 3 years ago # -
Hi _ck_,
Great plugin! But am I doing some wrong, or can it be true, that the "reputation bar" will be longer for a user have 72 points than a user having 121 points? I've tested the "bar width calculation", and it does seem to have a problem because you minify the value that fast. Please correct me if I'm wrong, and if it's my set up which has a bug.Posted: 3 years ago # -
CK - there is a serious bug with this plugin that can allow someone to hijack an entire user database. Please email me (info found at cairoshell.com).
Posted: 3 years ago # -
um...
so any update on this "serious bug"???
should we use this plugin or not.Posted: 3 years ago # -
Oh I never saw that bug because his email address was full and all mail bounced back.
Let me see if I can spot the bug.
I released this plugin way too soon, I barely developed/tested it.
Please update to 0.0.6 immediately!
Posted: 3 years ago # -
Still listing 0.0.5 and not 0.0.6 in download (and 0.0.5 is in the zip file if you click it).
Edit: updated now, sorry, didn't know about the delay :)
Posted: 3 years ago # -
SVN to the extend section is always slow, (10-15 minute scans) give it a minute.
Posted: 3 years ago # -
ck, I understand that you must have <?php do_action('bb_foot', ''); ?> in the footer in order for a lot of plugins like this one to work. Well, I have that line in my footer and everything works, BUT, I have the following error:
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, '' was given in /home/mysite/public_html/forum/bb-includes/wp-functions.php on line 586
This error goes away when I remove <?php do_action('bb_foot', ''); ?>
Any thoughts?
Posted: 3 years ago # -
put back in the bb_foot and deactivate this plugin, does it still happen?
if you still get the error, keep deactivating plugins until you find the one causing the problem
Posted: 3 years ago # -
Great plug in but I can't seem to find where the amounts are stored in my sql db.
Posted: 3 years ago # -
hey __CK__ does this work for alpha? rc1
Posted: 2 years ago # -
thanks ck for a great plugin. but i have a question
is it possible to output a list of the members with highest reputation points?
thanks
Posted: 2 years ago # -
This should list the top ten members, untested:
global $bbdb; $results=$bbdb->get_results("SELECT user_login as name,meta_value as reputation FROM $bbdb->usermeta LEFT JOIN $bbdb->users ON ID=user_id WHERE meta_key='bb_reputation' ORDER BY CAST(meta_value as UNSIGNED) DESC LIMIT 10"); echo "top ten:<br />"; foreach ($results as $result) {echo "$result->name : $result->reputation<br />";}Posted: 2 years ago # -
thanks ck it works ...
Posted: 2 years ago #
Add a Comment »
You must log in to post.