vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Miscellaneous Hacks - Display Reputation Comments Given (https://vborg.vbsupport.ru/showthread.php?t=231875)

Paul M 01-01-2010 10:00 PM

Display Reputation Comments Given
 

--------------------------------------------------------------------------------
This modification has been withdrawn.
vBulletin 4.0.x and 4.1.x are no longer supported.

The feature is already built into the core vBulletin 4.2.x code.
--------------------------------------------------------------------------------


This shows members who their last few reputation comments have been given to - in the same manner as their received comments. The list appears in the usercp with the reputation received list. The users current repping power is also displayed, in the same manner as their points total.

There is an option to display this above or below the reputation received list (default is above). There is also the option for users to delete reputation they have given within a certain timeperiod (default = 5 minutes). This allows the removal of comments given in error (or regretted !).

The settings for this modification are located in vBulletin Options > Display Reputation Given.

History:

v4.0.1 : 02-Jan-2010 : Initial release for vb 4.0.0 Gold.
v4.0.2 : 02-Jan-2010 : Fixed broken post links in display.
v4.0.3 : 21-Jan-2010 : Updated Display of Delete option.
v4.0.4 : 26-Jan-2010 : Various updates.
v4.0.5 : 20-Feb-2010 : Internal update, not released.
v4.0.6 : 27-Feb-2010 : Style code updates for vB 4.0.2.
v4.0.7 : 30-Oct-2010 : Style code updated to work when css stored as files.

v4.1.0 : 04-Dec-2010 : Updated for vBulletin 4.1.
v4.1.1 : 27-Dec-2010 : Updated phrase.

v4.1.7.0 : 16-Oct-2011 : Updated for vBulletin 4.1.7.

[/SIZE]

Raug 01-02-2010 02:26 AM

Woo, thanks for updating. Been waiting for this one!

elwachiman 01-02-2010 02:42 AM

excellent mod installed
when you click on the link you were given the reputation in control panel user get a warning that the topic does not exist or is an invalid link that is the only little problem that has.

Quote:

VBulletin Message
No subject has been specified. If you followed a valid link, please notify the administrator

Zaiaku 01-02-2010 04:08 AM

This actually makes me want to use the rep system on my sites.
marking this may install it later on after going public.
Great work!

Raug 01-02-2010 05:00 AM

Quote:

Originally Posted by elwachiman (Post 1944597)
excellent mod installed
when you click on the link you were given the reputation in control panel user get a warning that the topic does not exist or is an invalid link that is the only little problem that has.

A temporary fix that I'm using until Paul updates:

in usercp_reputationbits_given
find:
PHP Code:

<class="smallfont" href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo}}#post{vb:raw reputation.postid}">{vb:raw reputation.title}</an 


replace with:
PHP Code:

<class="smallfont" href="showthread.php?p={vb:raw reputation.postid}">{vb:raw reputation.title}</a

I don't know the correct vb variables to use yet, so this one is just plain.

Paul M 01-02-2010 10:28 AM

Quote:

Originally Posted by elwachiman (Post 1944597)
when you click on the link you were given the reputation in control panel user get a warning that the topic does not exist or is an invalid link that is the only little problem that has.

Confirmed bug. I will fix that in the next release. Thanks for reporting.


Edit: Fixed in 4.0.2

Adem GEN? 01-02-2010 01:20 PM

Thanks, Intalled

elwachiman 01-02-2010 01:39 PM

Quote:

Originally Posted by Paul M (Post 1944822)
Confirmed bug. I will fix that in the next release. Thanks for reporting.


Edit: Fixed in 4.0.2

updated again, it works perfect thanks paul

arena 01-02-2010 07:08 PM

Thanks, Intalled :)

albibak 01-05-2010 07:00 PM

Paul M,

Thanks for the mod
Please, find in attachment the french translation
You can find the french topic for this mod here: http://forum.vbulletin-fr.org/modifi...tations-donnes

Paul M 01-05-2010 07:10 PM

AFAIK, its not possible to phrase the text in options.

albibak 01-05-2010 07:23 PM

Yes, sorry, I wrote it fastly ^^

ndut 01-18-2010 02:40 PM

nice, thanks

tobe12 01-30-2010 12:32 AM

All setup OK. I can't see REPUTATION comments left to members. Where can I see it? Is there any changes in Admin CP to make it visible?

Paul M 01-30-2010 10:11 AM

In the USERCP (Settings link these days).

p0lar_bear 03-05-2010 06:51 AM

When I installed this on our board, its formatting was a little off. I fixed this by changing the id attribute of the <ol> to mirror the normal rep list (back to "reputationlist").

https://vborg.vbsupport.ru/external/2010/03/69.png
https://vborg.vbsupport.ru/external/2010/03/70.png

-=Leb=- 03-16-2010 11:32 PM

thank you paul. its working great on 4.0.2

trackpads 04-19-2010 02:16 AM

Thanks! Installed

furst 04-19-2010 05:31 AM

Thanks. I'd like to see this updated with the option to display reputation given publicly in members' profiles.

Paul M 04-19-2010 11:13 AM

Quote:

Originally Posted by furst (Post 2023607)
Thanks. I'd like to see this updated with the option to display reputation given publicly in members' profiles.

Thats a seperate modification which already exists. Just check my profile.

Fraxter 07-12-2010 08:19 PM

Quote:

Originally Posted by p0lar_bear (Post 1997569)
When I installed this on our board, its formatting was a little off. I fixed this by changing the id attribute of the <ol> to mirror the normal rep list (back to "reputationlist").

Same here.

Edit:// Works with your fix. Thank you!

apokphp 07-21-2010 05:01 PM

Got this error when clicking "Settings" (member settings) in 4.0.5.

Quote:

Database error in vBulletin 4.0.5:

Invalid SQL:

SELECT user.username, reputation.userid, reputationid, reputation.postid, thread.postuserid,
reason, post.threadid, reputation.dateline, thread.title, thread.forumid, reputation.reputation
FROM reputation AS reputation
LEFT JOIN post AS post ON(reputation.postid = post.postid)
LEFT JOIN thread AS thread ON(post.threadid = thread.threadid)
LEFT JOIN user AS user ON(user.userid = reputation.userid)
WHERE reputation.whoadded = 1
ORDER BY reputation.dateline DESC
LIMIT;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 9
Error Number : 1064
Request Date : Wednesday, July 21st 2010 @ 12:57:30 PM
Error Date : Wednesday, July 21st 2010 @ 12:57:30 PM
Script : xxxt/forums/usercp.php
Referrer : xxx/forums/forum.php
IP Address : xxx
Username : Apokalupsis
Classname : vB_Database
MySQL Version : 5.1.47
Had to uninstall.

Paul M 07-21-2010 09:19 PM

That means you had an invalid (blank) setting for the "Reputation Given Comments" setting (it should default to 10 when you install it).

apokphp 07-22-2010 05:03 AM

I didn't think I changed any setting at all. Anyway, I reinstalled, made sure to check that there was "10" in the field...all is good now. Thanks for the support.

apokphp 07-22-2010 05:34 AM

I'm having the same trouble that Polar Bear was having...the formatting is off. I don't understand how to resolve the issue from his post though. Can you help Paul?

Paul M 07-22-2010 11:04 AM

The mod css will not kick in if you use the store css in a file setting - this is down to the stupid way in which vb4 operates. I think Polar Bear changed some clasesses in the template as they happen to be pretty much the same as existing ones.

apokphp 07-22-2010 04:39 PM

Yup, that fixed it.

Mooff 08-02-2010 10:56 AM

First day after our vB4 release our users allready moaned about this addon beeing gone. :D

Thanks you for your work. :)


As for the store css setting:

Add this:
Code:

@import url("{vb:raw vbcsspath}custom_drg.css");
at the top of your additional.css File (has to be at the top) in order for vb4 to load these settings.

*Note: This is no longer necessary *

POL_ED 11-03-2010 05:14 PM

Thank you Paul. Its working great on 4.0.8

scuter 11-08-2010 04:24 AM

anyway tp get the rep comments displayed under the post?

POL_ED 12-05-2010 10:35 AM

Thank you Paul
Works perfectly on VB 4.1.0

rootsxrocks 12-10-2010 07:54 PM

Were there any Issues Identified with 4.0.7 being installed on 4.10 I am Diagnosing some issues here and just came to redownload all of my mods to help clean up my server when I discovered this updated version I have marked install Not sure why I didn't get a notice of the newer versions, can I just write over or do I need to uninstall then re install ?

Paul M 12-10-2010 08:48 PM

I believe the only change in this case was the dependancies - to allow it to be installed on 4.1

You wont normally get notifications when my mods are updated unless you set the automatic notifications option (in settings). I dont generally send out manual ones.

rootsxrocks 12-10-2010 11:45 PM

I should be checking back on them more regularly
Thank you

mahsazn 01-03-2011 02:00 PM

<removed>

ndut 01-27-2011 03:59 PM

how to display green / red square image for GRP/BRP beside the reputation comment?

DirtRider 03-10-2011 03:19 AM

I install it but I don't see anything in the profile that shows this under rep points received

giskard 04-01-2011 06:29 PM

Thanks, Vbulletin is missing a lot of these little touches so its great to get them added via mods. :)

lazytown 04-22-2011 12:13 AM

I think I found a minor problem between this mod an your other mod "Enhanced Reputation Checks".

The problem is that if a user is limited to say "250 max reputation," this mod will still show a much higher number in their settings/usercp. Is there any way around this?

thanks

Froberg 04-22-2011 11:11 AM

Great mod, installed and marked as such! :)


All times are GMT. The time now is 05:29 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01306 seconds
  • Memory Usage 1,817KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete