Displays a graphic image based on the posters post count. Incorporates the post-count functions from bb-post-count by Joshua Hutchins.
bbPress plugin browser »
graphic-display-ranks (0.6)
Download
Version: 0.6
Last Updated: 2007-1-26
Requires bbPress Version: 0.73 or higher
Compatible up to: 0.75
Average Rating





Your Rating
Author: Jim Lynch
-
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 # -
Ack! I must have the wrong file zipped. I'll correct that when I get home tonight. Thanks.
Posted: 1 year ago # -
No problem! :D
Posted: 1 year ago # -
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 = 0You 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 = 0That'll return the count itself as an integer number.
Posted: 1 year ago # -
No lo pude hechar a andar... me marca error en la linea 43
Posted: 1 year ago # -
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 # -
Anyone?
Posted: 8 months ago #
Add a Comment
You must log in to post.