bbPress

Simple, Fast, Elegant

bbPress plugin browser »

graphic-display-ranks (0.6)

Download

Version: 0.6

Other Versions

Last Updated: 2007-1-26

Requires bbPress Version: 0.73 or higher

Compatible up to: 0.75

Author Homepage »

Plugin Homepage »

Average Rating

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

Your Rating

Author: Jim Lynch

Displays a graphic image based on the posters post count. Incorporates the post-count functions from bb-post-count by Joshua Hutchins.

Tags:

  1. Good plugin. :D

    However I had to do the following to get it to work:

    - Turn off mod_rewrite in the main forum config file.
    - Change "config.php" to "gdr_config.php" in the plugin file itself.
    - Add '<? ... ?>' to the gdr_config.php file.
    - Change all the .gif's to .png's in the config file for the default images.

    After that it worked great. :)

    Posted: 1 year ago #
  2. Ack! I must have the wrong file zipped. I'll correct that when I get home tonight. Thanks.

    Posted: 1 year ago #
  3. No problem! :D

    Posted: 1 year ago #
  4. Here's a tweak to make the plugin much more database friendly. Right now it's querying all the post data for a user just to get the number of articles:

    SELECT * FROM $bbdb->posts WHERE poster_id = $id AND post_status = 0

    You don't need to query and transfer all that data. MySQL can count rows itself and does so very efficiently and optimized. Try doing this instead:

    SELECT COUNT(*) FROM $bbdb->posts WHERE poster_id = $id AND post_status = 0

    That'll return the count itself as an integer number.

    Posted: 1 year ago #
  5. No lo pude hechar a andar... me marca error en la linea 43

    Posted: 1 year ago #
  6. I get this error when i try to activate this plugin:
    Plugin could not be activated; it produced a Fatal Error.

    Posted: 9 months ago #
  7. Anyone?

    Posted: 8 months ago #

RSS feed for this topic

Add a Comment

You must log in to post.

Code is Poetry.