bbPress

Simple, fast, elegant

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

Author Homepage »

Plugin Homepage »

Donate to this plugin »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(3)

Your Rating

Author: _ck_


  1. Patir

    5 stars
    4 stars
    3 stars
    2 stars
    1 star

    Member

    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?

    Posted: 1 year ago #
  2. _ck_

    Moderator

    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/1661

    Posted: 1 year ago #
  3. 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: 1 year ago #
  4. _ck_

    Moderator

    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: 1 year ago #
  5. 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: 1 year ago #
  6. _ck_

    Moderator

    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 in footer.php

    Posted: 1 year ago #
  7. _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: 1 year ago #
  8. 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: 1 year ago #
  9. 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: 1 year ago #
  10. um...

    so any update on this "serious bug"???
    should we use this plugin or not.

    Posted: 1 year ago #
  11. _ck_

    Moderator

    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: 1 year ago #
  12. 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: 1 year ago #
  13. _ck_

    Moderator

    SVN to the extend section is always slow, (10-15 minute scans) give it a minute.

    Posted: 1 year ago #
  14. wilcosky

    Member

    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: 1 year ago #
  15. _ck_

    Moderator

    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: 1 year ago #
  16. Great plug in but I can't seem to find where the amounts are stored in my sql db.

    Posted: 10 months ago #
  17. hey __CK__ does this work for alpha? rc1

    Posted: 9 months ago #
  18. 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: 9 months ago #
  19. _ck_

    Moderator

    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: 9 months ago #
  20. thanks ck it works ...

    Posted: 9 months ago #

RSS feed for this topic

Add a Comment »

You must log in to post.

Code is Poetry.