PDA

View Full Version : Show Thread Enhancements - [AJAX] Post Thank You Hack


Pages : 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16

terminator2k2
11-23-2011, 07:19 PM
I have a problem in vB 4.1.8

Show Stats in Profile?
Do you want to show a user's post thanks stats in their profile? (These stats come along with links to search all posts that user gave thanks to and all posts of his/hers that got thanked by someone else.)

^- set to yes, statistics is shown but you cannot search all posts the user gave thanks to and got thanks for, there is no link generated

sadiq6210
11-24-2011, 04:23 AM
I have a problem in vB 4.1.8

Show Stats in Profile?
Do you want to show a user's post thanks stats in their profile? (These stats come along with links to search all posts that user gave thanks to and all posts of his/hers that got thanked by someone else.)

^- set to yes, statistics is shown but you cannot search all posts the user gave thanks to and got thanks for, there is no link generated


Open template (post_thanks_memberinfo_block)
Change it all with this:

<h5 class="subsubsectionhead">{vb:rawphrase post_thanks_total_thanks}</h5>
<dl class="stats">
<dt>{vb:rawphrase post_thanks_total_thanks}</dt>
<dd>{vb:raw userinfo.post_thanks_user_amount_formatted}</dd>
</dl>
<ul class="group">
<li>
<vb:if condition="$userinfo[post_thanks_thanked_times] == 1">
{vb:rawphrase post_thanks_time_post}
<vb:else />
<vb:if condition="$userinfo[post_thanks_thanked_posts] == 1">
{vb:rawphrase post_thanks_times_post, {vb:raw userinfo.post_thanks_thanked_times_formatted}}
<vb:else />
{vb:rawphrase post_thanks_times_posts, {vb:raw userinfo.post_thanks_thanked_times_formatted}, {vb:raw userinfo.post_thanks_thanked_posts_formatted}}
</vb:if>
</vb:if>
</li>
<li>
<a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user, {vb:raw userinfo.username}}</a>
</li>
<li>
<a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:r aw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a>
</li>
</ul>

fairlady4u
11-27-2011, 03:14 PM
Anyway i can install this in 4.18?i can seem to install it :(

ForceHSS
11-27-2011, 04:09 PM
Anyway i can install this in 4.18?i can seem to install it :(

look harder

Bisha
11-27-2011, 06:10 PM
did the Database errors are fixed?

terminator2k2
11-27-2011, 06:43 PM
k thanks, the code was commented out.

another question about the wordwrap when showing the users who thanked, it seems that it's not working like it should.

There is wordwrap on users who have "-" or space in their nicknames and the style is "broken" because each line of shown users is too long

HondaStreetCult
11-27-2011, 08:09 PM
Need help... I am trying to change the "The Following 10 Users Say Thank You to Mervin For This Useful Post: " to something else. Can anyone help me and tell me where i can do this?

sadiq6210
11-27-2011, 09:08 PM
Need help... I am trying to change the "The Following 10 Users Say Thank You to Mervin For This Useful Post: " to something else. Can anyone help me and tell me where i can do this?

Just search in phrases :)

Hint:
Find (For This Useful Post)

Hippy
11-27-2011, 10:37 PM
search your phrases for The Following {1} Users Say Thank You to {2} For This Useful Post:
and change it to wha you want .. remember to keep the {1} and {2} these call the numbers

Breakthecycle2
11-28-2011, 02:38 AM
This seems to not work in 4.1.8.

The following dependencies were not met:
This product is not compatible with version 4.1.8 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Videx
11-28-2011, 03:24 AM
This seems to not work in 4.1.8.



The following dependencies were not met:
This product is not compatible with version 4.1.8 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)Go to the upper right and select "Search this mod" - for a distinct word like "dependencies".

Since this question has now been asked and answered over 10 million times, we can no longer keep lengthening the thread by simply repeating the answer. It's more productive to teach people how to find the answer on their own.

terminator2k2
11-28-2011, 05:13 AM
Need help... I am trying to change the "The Following 10 Users Say Thank You to Mervin For This Useful Post: " to something else. Can anyone help me and tell me where i can do this?

go to the ACP -> Languages & Phrases -> Phrase Manager -> Phrase Type: Global -> Phrase: post_thanks_users_say

uninvited13th
11-28-2011, 08:00 AM
This seems to not work in 4.1.8.



The following dependencies were not met:
This product is not compatible with version 4.1.8 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

edit xml..

<dependency dependencytype="vbulletin" minversion="4.0.0 beta 4" maxversion="4.1.99" />

ballbrk
11-30-2011, 09:11 PM
Hi I made a small change in the file post_thanks.php , . I change ORDER BY post.dateline to ORDER BY post.postid.

This will increase the performance of the plugin .. as you can read in http://articles.digitalpoint.com/content.php?r=7-Optimize-vBulletin-4

ballbrk
12-01-2011, 01:17 PM
If you want to get an extra performance in post thanks .. you need to edit the file functions_post_thanks.php that is in the Include directory. Search for "SELECT * and change to
"SELECT postid,userid,post_thanks.username,date.

with this change you will reduce the quantity of data that will flow from DB to Webserver and reduce the time :)

Hippy
12-01-2011, 07:49 PM
If you want to get an extra performance in post thanks .. you need to edit the file functions_post_thanks.php that is in the Include directory. Search for "SELECT * and change to
"SELECT postid,userid,post_thanks.username,date.

with this change you will reduce the quantity of data that will flow from DB to Webserver and reduce the time :)

can you be a little more specific on the code to change ..
there are a few SELECT * there


thanks for the info.

MaXimus
12-03-2011, 06:34 AM
this mod hasn't been updated in ages :(

Gursimran
12-03-2011, 07:52 AM
Hello, I am getting vBulletin Database Error in my vBulletin 4.1.8
I guess it is because of this mod, so please help

Database error in vBulletin 4.1.8:

Invalid SQL:

REPLACE INTO vb_search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (0, '66.249.67.241', 1, 'bolt', '', 'post.dateline', 'DESC', 0.01879, 1, '34343,34170,34099,34098,34001,32857,31791,30741,3 0690,30373,30364,30363,30295,29159,28855,27126,257 71,24767,23328,22923,22699,16141,16140,7728,3268,3 203,3005,2914', 1322860031, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:4255;s:4:\"bolt\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', 'f573a426109978edf2b2fd3a4f226f4d');

MySQL Error : Table '****_vb.vb_search' doesn't exist
Error Number : 1146
Request Date : Friday, December 2nd 2011 @ 02:07:11 PM
Error Date : Friday, December 2nd 2011 @ 02:07:11 PM
Script : http://www.*****.info/forum/post_thanks.php?do=findthanks_user_gave&u=4255
Referrer :
IP Address : ********
Username : Unregistered
Classname : vB_Database
MySQL Version :

ballbrk
12-03-2011, 08:12 AM
can you be a little more specific on the code to change ..
there are a few SELECT * there


thanks for the info.


Yes sorry :) ... the modification is in includes/function_post_thanks.php ... you can see two SELECT * in the function fetch_thanks . I made some test and reduce the time of those SQL from 0.17s to 0.07s :) .

ballbrk
12-03-2011, 08:14 AM
Hello, I am getting vBulletin Database Error in my vBulletin 4.1.8
I guess it is because of this mod, so please help

Database error in vBulletin 4.1.8:

Invalid SQL:

REPLACE INTO vb_search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (0, '66.249.67.241', 1, 'bolt', '', 'post.dateline', 'DESC', 0.01879, 1, '34343,34170,34099,34098,34001,32857,31791,30741,3 0690,30373,30364,30363,30295,29159,28855,27126,257 71,24767,23328,22923,22699,16141,16140,7728,3268,3 203,3005,2914', 1322860031, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:4255;s:4:\"bolt\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', 'f573a426109978edf2b2fd3a4f226f4d');

MySQL Error : Table '****_vb.vb_search' doesn't exist
Error Number : 1146
Request Date : Friday, December 2nd 2011 @ 02:07:11 PM
Error Date : Friday, December 2nd 2011 @ 02:07:11 PM
Script : http://www.*****.info/forum/post_thanks.php?do=findthanks_user_gave&u=4255
Referrer :
IP Address : ********
Username : Unregistered
Classname : vB_Database
MySQL Version :


The problem that the table vb_search don't exist... maybe you deleted or changed the name.

Hostboard
12-03-2011, 11:57 AM
I am also getting the database error. Recently upgraded my VB3 to VB4. Unless this is updated soon I will have to go to DragonBytes version.

ForceHSS
12-03-2011, 12:50 PM
Hello, I am getting vBulletin Database Error in my vBulletin 4.1.8
I guess it is because of this mod, so please help

Database error in vBulletin 4.1.8:

Invalid SQL:

REPLACE INTO vb_search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (0, '66.249.67.241', 1, 'bolt', '', 'post.dateline', 'DESC', 0.01879, 1, '34343,34170,34099,34098,34001,32857,31791,30741,3 0690,30373,30364,30363,30295,29159,28855,27126,257 71,24767,23328,22923,22699,16141,16140,7728,3268,3 203,3005,2914', 1322860031, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:4255;s:4:\"bolt\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', 'f573a426109978edf2b2fd3a4f226f4d');

MySQL Error : Table '****_vb.vb_search' doesn't exist
Error Number : 1146
Request Date : Friday, December 2nd 2011 @ 02:07:11 PM
Error Date : Friday, December 2nd 2011 @ 02:07:11 PM
Script : http://www.*****.info/forum/post_thanks.php?do=findthanks_user_gave&u=4255
Referrer :
IP Address : ********
Username : Unregistered
Classname : vB_Database
MySQL Version :

there already is a fix for this check older posts

Hostboard
12-03-2011, 09:07 PM
135 pages of posts to check through...

Anyways for others here is a link to the one I just loaded and seems to have fixed the DB errors I was getting. Hope it is helpful to others...

https://vborg.vbsupport.ru/showpost.php?p=2197392&postcount=1546

Wild Bronco
12-04-2011, 12:33 AM
Does this work for cms articles and blog to?

dszuecs
12-04-2011, 11:34 PM
I thought that it was possible to "show" & "hide" the thanks below a thread, or am i wrong? oO

Lewenhaupt
12-07-2011, 09:50 AM
is it possible to make this mod compatible with version 4.1.3? I tried installing it but it didnt work.

sadiq6210
12-07-2011, 10:00 AM
is it possible to make this mod compatible with version 4.1.3? I tried installing it but it didnt work.

It is here :(

https://vborg.vbsupport.ru/showpost.php?p=2197392&postcount=1546

ForceHSS
12-07-2011, 10:03 AM
<a href="https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847" target="_blank">https://vborg.vbsupport.ru/showp...postcount=1847</a>
this is more up to date than the post above

Lewenhaupt
12-07-2011, 02:22 PM
https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847
this is more up to date than the post above

It is here :(

https://vborg.vbsupport.ru/showpost.php?p=2197392&postcount=1546

Thanks guys!

PakStarTv.com
12-07-2011, 06:57 PM
Not Compatible with 4.1.8

Hostboard
12-07-2011, 07:30 PM
Not Compatible with 4.1.8

It is working on 2 of my 4.1.8 sites. Make sure you download and install the version I linked to in the post above.

corbis
12-09-2011, 04:06 PM
will you make this compatible with 4.1.x soon?

djbaxter
12-09-2011, 09:35 PM
will you make this compatible with 4.1.x soon?

*sigh* Try reading the two or three posts just above yours...

Hippy
12-09-2011, 09:43 PM
the author has abanden this mod so the members that use this mod have updated it .. so youll have to search the posts..

ForceHSS has a link in his sig that should work for you

Videx
12-10-2011, 11:23 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=201864" target="_blank">DJ's "How To Install Modifications (Mods/Hacks)" for Beginners</a>

Also always make sure you have current backups before messing around. And always read the entire mod's thread! Many don't work at all and some - like this one - only have working versions in later posts.

GeorgeB85
12-11-2011, 07:12 PM
Does anyone know how to make this work with the latest vbulletin?

Hostboard
12-11-2011, 08:49 PM
Does anyone know how to make this work with the latest vbulletin?

Seriously??? Read 6 posts up...

nighteyes
12-12-2011, 04:02 PM
Seriously??? Read 6 posts up...

Search is still broken in the current versions linked to 6 posts up. The database errors others report exist in all versions of code running on vBulletin 4.1.8.

MySQL Error : Table 'vbulletindb_com.search' doesn't exist
Error Number : 1146

That table does exist in our database. :)

Hostboard
12-12-2011, 07:54 PM
Are you trying to run the "fixed" 7.82 or the re-released 7.83

ka81
12-13-2011, 01:14 PM
Version 7.83 (29/08/11 by Forcehss)
just installed it.
when i click on Thanks button under post - button disappers, but nothing changes (my nickname doesn\t appear under post, in profile of user - no thanks from me).
so i refresh a page and see: under that post Thanks button exist again and nothing changed in thank counters for user (and for me).

would you please help to deal with that?

ka81
12-13-2011, 01:15 PM
and more:
http://forum.com/admincp/options.php?do=optionsdogroup=post_thanks
there's nothing!
Just a blue-blank page with Copyright at the top.

Wild Bronco
12-13-2011, 04:49 PM
I get this error

This product is not compatible with version 4.1.8 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Wild Bronco
12-13-2011, 04:55 PM
This only works for Forums, not articles or blogs

Right version for 4.1.8 is here

https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847

ka81
12-13-2011, 07:32 PM
do you mean - post_thanks_7_83.zip (26.0 KB, 306 views)
?
that is the version that I installed.

anyway, here's is my situation:
I was driving a vB 3.8.7 with Post Thanks 7.7 for vb3.8.
I uninstaled mod. I upgraded vb to 4.1.8.
After that i instaled post_thanks_7_83.zip.
Right now, I see: /admincp/repair.php?do=list: vb3_post_thanks 2.26 MB 1.87 MB 0
but, in posts in miniprofile under everyone user i see Thaks 0. so everybody has no thanks.
:(

Please, anybody, begging you to help me to retrieve back "thanks".
i will be "greatfull" if need.

by the way, i have a dump of BD, when it was 3.8.7 and in that dump i'm sure there are all the "thanks" exist.
so there is a possibility to get them back?...

ForceHSS
12-13-2011, 08:20 PM
do you mean - post_thanks_7_83.zip (26.0 KB, 306 views)
?
that is the version that I installed.

anyway, here's is my situation:
I was driving a vB 3.8.7 with Post Thanks 7.7 for vb3.8.
I uninstaled mod. I upgraded vb to 4.1.8.
After that i instaled post_thanks_7_83.zip.
Right now, I see: /admincp/repair.php?do=list: vb3_post_thanks 2.26 MB 1.87 MB 0
but, in posts in miniprofile under everyone user i see Thaks 0. so everybody has no thanks.
:(

Please, anybody, begging you to help me to retrieve back "thanks".
i will be "greatfull" if need.

by the way, i have a dump of BD, when it was 3.8.7 and in that dump i'm sure there are all the "thanks" exist.
so there is a possibility to get them back?...

https://vborg.vbsupport.ru/showpost.php?p=2264681&postcount=1943

ka81
12-13-2011, 08:51 PM
https://vborg.vbsupport.ru/showpost.php?p=2264681&postcount=1943didn't get what is that for actually...

my problem is that:
in profile we can see:
Thanks: XX
Thanked 0 Times in 0 Posts

0 - is a problem. it's not true.

I updated counters few times. didn't change it..

:(

Hippy
12-13-2011, 11:27 PM
thats post is all the fixes to date ;)

haidm
12-15-2011, 02:46 AM
Have a problem when install post thank you hack 7.83 in vb 4.1.8, see in attach, can anybody help me?

Hippy
12-15-2011, 09:08 PM
Have a problem when install post thank you hack 7.83 in vb 4.1.8, see in attach, can anybody help me?

add this mod to the post thanks..
https://vborg.vbsupport.ru/showthread.php?t=250325
will make it collapse after 10 thanks
if you have trouble send me a pm ..

haidm
12-16-2011, 04:56 AM
add this mod to the post thanks..
https://vborg.vbsupport.ru/showthread.php?t=250325
will make it collapse after 10 thanks
if you have trouble send me a pm ..
I'm using this mod too. My problem is no space after the symbol "," between symbol , and username.

Hippy
12-16-2011, 08:40 PM
does your post_thanks_box_bit template
have this code in it ?
<a href="member.php?{vb:raw session.sessionurl}u={vb:raw thank.userid}" rel="nofollow">{vb:raw thank.username}</a><vb:if condition="$date_thank">&nbsp;({vb:raw date_thank})</vb:if>{vb:raw virg}

I cant tell but from your picture it looks like this is missing
&nbsp;
and the hide hack you would see Show/Hide list of the thanked
so if you are using it maybe the edit it not correct
make sure you have reverted all your post_thanks templates as well..

haidm
12-18-2011, 12:53 PM
does your post_thanks_box_bit template
have this code in it ?
<a href="member.php?{vb:raw session.sessionurl}u={vb:raw thank.userid}" rel="nofollow">{vb:raw thank.username}</a><vb:if condition="$date_thank">&nbsp;({vb:raw date_thank})</vb:if>{vb:raw virg}

I cant tell but from your picture it looks like this is missing
&nbsp;
and the hide hack you would see Show/Hide list of the thanked
so if you are using it maybe the edit it not correct
make sure you have reverted all your post_thanks templates as well..
I check the post_thanks_box_bit, and it has "&nbsp;" in there, but don't know still have this error.

bkhan530
12-19-2011, 02:52 AM
Is there a modification that replaces the reputation meter and instead labels it as a "Thank You" meter? I have it set to give 1 reputation point per Thank You received so this would be very useful. I'd also like to remove the existing reputation button (star) in place of Thank You.

Penguin82
12-19-2011, 03:10 AM
How do I move the Thanked xx in xx posts from being right aligned to left aligned in the postbit?

mfractal
12-19-2011, 12:34 PM
@OP - Great mod, thanks for the hard work! :)
One request :
Is it possible to add a link to all thanked posts to a user profile ? Currently i can only see total thanks and in how many posts.

mfractal
12-20-2011, 10:04 AM
In case you are migrating from VBSEO Likes to this mod, here are the SQLs you need to run to convert all the likes retroactively to thanks.
Those statements assume you want to add 1 reputation point for each Thanks given (retroactively)



insert into reputation (postid,userid,reputation,whoadded,reason,dateline ) select l_contentid,post.userid,1,l_from_userid,'Thanked Post',l_dateline from vbseo_likes, post where l_contentid=postid
insert into post_thanks (userid,username,date,postid) values select l_from_userid,l_from_username,l_dateline,l_content id from vbseo_likes;

update user set post_thanks_thanked_times = (select count(userid) from reputation where reputation.userid = user.userid) ;
update user set post_thanks_user_amount = (select count(userid) from reputation where reputation.whoadded = user.userid);
update user set post_thanks_thanked_posts = (SELECT COUNT(DISTINCT postid) from reputation where reputation.userid = user.userid);

update user set reputation = (select sum(reputation) from reputation where reputation.userid = user.userid)

update post set post_thanks_amount = (select count(postid) from reputation where reputation.postid = post.postid);

Chri5123
12-20-2011, 05:08 PM
Does this work with versions 4.1.8?

Crotan
12-20-2011, 05:14 PM
Does this work with versions 4.1.8?

Yes

Chri5123
12-20-2011, 05:24 PM
Yes

Cheers for getting back to me.

Can you tell me which link I should download from or which version?

Can't get this to work.

If you could post a link to the exact version would be awesome or just let me know?

Chris

sadiq6210
12-20-2011, 05:31 PM
Cheers for getting back to me.

Can you tell me which link I should download from or which version?

Can't get this to work.

If you could post a link to the exact version would be awesome or just let me know?

Chris

https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847

Chri5123
12-20-2011, 05:42 PM
https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847

Awesome mate!

Got it installed - thanks so much for this!

Just one question.

Now people can Thank posts how do i get them to earn rep that changes their titles?

CJ

Hippy
12-20-2011, 09:26 PM
Awesome mate!

Got it installed - thanks so much for this!

Just one question.

Now people can Thank posts how do i get them to earn rep that changes their titles?

CJ

settings in admincp post thanks

Hippy
12-20-2011, 09:27 PM
How do I move the Thanked xx in xx posts from being right aligned to left aligned in the postbit?

send me a link to your site so I can see the code

ZacFields
12-22-2011, 10:28 PM
Hello - I am using VB 4.1.6 and have been using this mod for a while. A month ago or so, I began getting this error emailed to me (it's ALWAYS a search bot that accessed the page). I get it at least 2-3 times per day.

Database error in vBulletin 4.1.6:

Invalid SQL:

SELECT languageid,
phrasegroup_global AS phrasegroup_global,
phrasegroup_dbtech_thanks AS phrasegroup_dbtech_thanks,
phrasegroup_user AS phrasegroup_user,
phrasegroup_posting AS phrasegroup_posting,
phrasegroup_album AS phrasegroup_album,
phrasegroup_messaging AS phrasegroup_messaging,
phrasegroupinfo AS lang_phrasegroupinfo,
options AS lang_options,
languagecode AS lang_code,
charset AS lang_charset,
locale AS lang_locale,
imagesoverride AS lang_imagesoverride,
dateoverride AS lang_dateoverride,
timeoverride AS lang_timeoverride,
registereddateoverride AS lang_registereddateoverride,
calformat1override AS lang_calformat1override,
calformat2override AS lang_calformat2override,
logdateoverride AS lang_logdateoverride,
decimalsep AS lang_decimalsep,
thousandsep AS lang_thousandsep
FROM language
WHERE languageid = 1;

MySQL Error : Unknown column 'phrasegroup_dbtech_thanks' in 'field list'
Error Number : 1054
Request Date : Sunday, December 18th 2011 @ 11:00:39 PM
Error Date : Sunday, December 18th 2011 @ 11:00:39 PM
Script : http://www.cowboysaddicts.com/thanks.php?do=statistics
Referrer :
IP Address : 66.249.71.14
Username :
Classname : vB_Database


A previous post says that this is due to not fully uninstalling the product. I've tried uninstalling and then reinstalling the product but I still get this error. Part of my confusion is that I don't understand where there is a link to this page on my site that the bots are accessing? I can't seem to find it.

Any ideas? I love this app and my members love it - I don't want to uninstall it, but I do want to make the error stop.

BTW: I have the 7.83 version installed (and have tried uninstalling and reinstalling). I will admit that I had an earlier version installed prior and just over-wrote the old files and reinstalled the XML file.

Hippy
12-22-2011, 11:08 PM
you must of had dbtech thanks mod installed because the errors are phrasegroup_dbtech_thanks

from his mod not this one..
make sure all his files have been removed and uninstalled.. and any template edits
double check the DB if any of his table are left..

wayne.richards@
12-23-2011, 10:58 PM
Not working with 4.1.9

Hippy
12-23-2011, 11:31 PM
<a href="https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847" target="_blank">https://vborg.vbsupport.ru/showp...postcount=1847</a>

wayne.richards@
12-24-2011, 12:58 PM
https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847

Thanks Hippy :up::up::up::up:

I uninstalled this after my forum was hacked, is there anyway to restore the amount of thanks my members had?

Hippy
12-24-2011, 01:09 PM
sorry
you can't once it's uninstalled
unless you restore a DB with the post counts in it

wayne.richards@
12-24-2011, 01:18 PM
Cheers Hippy, Its been a few days now so no point in going backwards, Thanks for all your help

Hippy
12-24-2011, 01:38 PM
welcome

bremereric
12-24-2011, 11:35 PM
I am a newbie and I uploaded all files to my host and could not get the plug in to install....what am I missing?

ForceHSS
12-25-2011, 12:03 AM
I am a newbie and I uploaded all files to my host and could not get the plug in to install....what am I missing?

you uploaded the wrong version use the one in my sig for the updated one

bremereric
12-25-2011, 03:19 PM
That did it. Is there a reason it hasn't replaced the 7.82.zip underneath the download now?

Hippy
12-25-2011, 04:51 PM
the author has no been around so the members have applied the updated to keep the mod alive

Videx
12-25-2011, 05:37 PM
I think what he's asking is why isn't there a procedure in place to take over a mod when the author disappears? I have no good answer for that. Even copyrights expire at some point. But release a mod on vb.org and drop dead and nobody is ever allowed to do anything with it. Thus we have mods like this with 42 pages of people asking the same question over and over again.

At the very least we should be able to get a moderator to alter the text in the first post, if only to remove the link to the non-working version.

PS A note to all mod authors: Please always mark your code as "reusable" so this doesn't happen to us with your mods.

djbaxter
12-25-2011, 06:14 PM
^^^ An excellent post and an excellent suggestion!

bremereric
12-26-2011, 03:39 AM
There are 139 pages that I would and could not start to read. Can someone help this hack out and put the newest version up for people to use.

Videx
12-26-2011, 03:53 AM
There are 139 pages that I would and could not start to read. Can someone help this hack out and put the newest version up for people to use.
You're not paying attention. It is strictly forbidden here to modify and distribute another person's mod unless they gave prior permission. So far we've gotten away with this one because the newer versions are fairly well hidden. But eventually someone in power will get wind of what's going on and clamp down.

At least in this case there's another mod that does pretty much the same thing, so all is not lost.

ForceHSS
12-26-2011, 04:05 PM
There are 139 pages that I would and could not start to read. Can someone help this hack out and put the newest version up for people to use.

use the one in my sig

bremereric
12-27-2011, 01:50 AM
use the one in my sigI did and it worked. Just saw June 2010 and even won the Mod of the month award.

gundamkid
12-27-2011, 03:07 AM
Hi ForceSS,

I tried to installed your version. It's worked fine! But when i logged as admin and used functions of inline mod (select all, delselect all) I get javascript error: this.checkbox is null on vbulletin-core.js.
I think this mod is incompatible with my vBulletin (4.1.4). Do you have any suggest for fix this issue??

ForceHSS
12-27-2011, 11:23 AM
Hi ForceSS,

I tried to installed your version. It's worked fine! But when i logged as admin and used functions of inline mod (select all, delselect all) I get javascript error: this.checkbox is null on vbulletin-core.js.
I think this mod is incompatible with my vBulletin (4.1.4). Do you have any suggest for fix this issue??

did you uninstall and then try installing again

Kraxell
12-27-2011, 07:29 PM
Is it possible to use a box in the postibit?

jjdurrant
12-28-2011, 03:50 PM
no go on 4.1

The following dependencies were not met:

This product is not compatible with version 4.1.9 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Hippy
12-28-2011, 07:03 PM
https://vborg.vbsupport.ru/showpost.php?p=2281022&postcount=2080
https://vborg.vbsupport.ru/showpost.php?p=2281127&postcount=2081
one page back

rhondajean
12-28-2011, 08:29 PM
Thank you.

gundamkid
12-29-2011, 06:59 AM
did you uninstall and then try installing again

Thank you. Let me try!

Easy5s.net
12-30-2011, 05:32 AM
Version 7.83 (29/08/11 by Forcehss)
Cosmetic changes necessary in postbit for integration purposes.
Changed to allow integration with Post Groans Hack.
reposting this again

yes, but not work when I click findthank&userid=x
with DB error:


Database error in vBulletin 4.1.9:

Invalid SQL:

REPLACE INTO search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (1, '127.0.0.1', 1, 'modvb4', '0', 'post.dateline', 'DESC', 0.00156307220459, 1, '9', 1325226696, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:1;s:6:\"modvb4\";}s:6:\"forums\";i:0;s:7:\"options\";a:4:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";s:17:\"award_search_name\";s:9:\"findthank\";}}', 'decb95b6341bbea68f54d34cc4fc2350');

MySQL Error : Table 'modvb4.search' doesn't exist
Error Number : 1146
Request Date : Friday, December 30th 2011 @ 01:31:36 PM
Error Date : Friday, December 30th 2011 @ 01:31:37 PM
Script : http://localhost/modvb4/search.php?do=findthank&userid=1
Referrer : http://localhost/modvb4/showthread.php?4-adaadadadadad
IP Address : 127.0.0.1
Username : modvb4
Classname : vB_Database
MySQL Version : 5.0.91-community

tidus78
12-30-2011, 02:19 PM
Hi guys just a little question :

Could I center this row?

http://img193.imageshack.us/img193/6050/capture20111230161626.png

ForceHSS
12-30-2011, 03:19 PM
yes, but not work when I click findthank&userid=x
with DB error:


Database error in vBulletin 4.1.9:

Invalid SQL:

REPLACE INTO search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (1, '127.0.0.1', 1, 'modvb4', '0', 'post.dateline', 'DESC', 0.00156307220459, 1, '9', 1325226696, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:1;s:6:\"modvb4\";}s:6:\"forums\";i:0;s:7:\"options\";a:4:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";s:17:\"award_search_name\";s:9:\"findthank\";}}', 'decb95b6341bbea68f54d34cc4fc2350');

MySQL Error : Table 'modvb4.search' doesn't exist
Error Number : 1146
Request Date : Friday, December 30th 2011 @ 01:31:36 PM
Error Date : Friday, December 30th 2011 @ 01:31:37 PM
Script : http://localhost/modvb4/search.php?do=findthank&userid=1
Referrer : http://localhost/modvb4/showthread.php?4-adaadadadadad
IP Address : 127.0.0.1
Username : modvb4
Classname : vB_Database
MySQL Version : 5.0.91-community

remove and install again

idesignicreate
12-31-2011, 09:52 PM
I set everything up properly but I when I go to my forum it doesn't appear at all. I don't understand this at all.

ForceHSS
12-31-2011, 09:54 PM
I set everything up properly but I when I go to my forum it doesn't appear at all. I don't understand this at all.

server version and did you install all the files first

Easy5s.net
01-01-2012, 02:22 AM
remove and install again

Database error in vBulletin 4.1.9:

vBulletin 4.1.9 no table "search" ?

ForceHSS
01-01-2012, 03:55 AM
Database error in vBulletin 4.1.9:

vBulletin 4.1.9 no table "search" ?

https://vborg.vbsupport.ru/showpost.php?p=2196762&postcount=1534

ka81
01-06-2012, 11:09 AM
Post Thank You Hack 7.82
vB 4.1.8
in settings I set for Reputation when adding Thank - 5.
so, we click on Thanks under post, number of Thanks for that user is changing, but his reputation is still the same.
where could be a trouble, help please?

ForceHSS
01-06-2012, 11:24 AM
updated one in my sig

ka81
01-06-2012, 11:49 AM
Version 7.83 (29/08/11 by Forcehss)
Cosmetic changes necessary in postbit for integration purposes.
Changed to allow integration with Post Groans Hack.
reposting this again

with this one - still no upgrading of reputation..

all counters (Thanks Counters, Reputation counters,...) are udpated.

datoneer
01-07-2012, 12:04 PM
Works with 4.1.8. Excellent mod!!

ka81
01-08-2012, 09:49 AM
author, please, what to do with noupdating of reputation?

ForceHSS
01-08-2012, 10:02 AM
have you checked the post with all the fixes yet

datoneer
01-08-2012, 11:31 AM
Ok i noticed something. It works when i click thanks in 2nd,3rd... post. But when i click thanks on first post (thread creator) then thanks icon just gone and nothing happend.

ka81
01-08-2012, 12:17 PM
have you checked the post with all the fixes yet
yes.

p.s. may I provide you with admin login so you could see all the settings yourself ?

Hippy
01-08-2012, 01:11 PM
yes.

p.s. may I provide you with admin login so you could see all the settings yourself ?

I sent you a PM

I asked you if you wanted to send me your email so I can send you this mod with all the fixes ..

out of respect to the author I will not post it unless I had permission even if the author has no intentions to come back..

anyway
send me your email I will send you this mod
upload all the file and over write the xml and see if it all works..

mine works perfect..
as ForceHSS did you look at the post I made with all the fixes and credit to the people who posted them.

Hippy
01-08-2012, 01:20 PM
this is 99% of what needs to be fixed for this mod to work correctly

https://vborg.vbsupport.ru/showpost.php?p=2264681&postcount=1943

I took the time to put this together

Like I said if you don't want to apply them I did, and I could send it to you via email..


this is 100% abe1's mod.. I did not add my name in it anywares since I did not write this great mod and the link above are the people that took the time to post fixes to keep this mod going ..

Hippy
01-08-2012, 01:34 PM
let me add a screenshot

northvanmike
01-08-2012, 03:51 PM
sorry guys, i'm slow. does this work with 4.1.9?

ForceHSS
01-08-2012, 04:20 PM
I sent you a PM
mine works perfect..
as ForceHSS did you look at the post I made with all the fixes and credit to the people who posted them.
I have seen that post and yes all the fixes from there are already put into the plugin some time ago

matt94gt
01-10-2012, 12:53 AM
I am getting an error when anyone clicks on the "Find all thanked posts by Matt94GT"

error:
Database error in vBulletin 4.1.5:

Invalid SQL:

REPLACE INTO search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (7964, '24.68.233.237', 1, 'Matt94GT', '', 'post.dateline', 'DESC', 0.03454, 1, '940023,934892,932254,928977,919842,918439,918430, 10592', 1326160357, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:7964;s:8:\"Matt94GT\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', 'b04117d46f3b49aa03c4e9f5ea991c25');

MySQL Error : Table 'snforums_vbdata2011.search' doesn't exist
Error Number : 1146
Request Date : Monday, January 9th 2012 @ 07:52:37 PM
Error Date : Monday, January 9th 2012 @ 07:52:37 PM
Script : http://sn95forums.com/post_thanks.php?do=findthanks&u=7964
Referrer : http://sn95forums.com/member.php?7964-Matt94GT
IP Address : 24.68.233.237
Username : Matt94GT
Classname : vB_Database
MySQL Version : 5.0.92-community


I tried repairing all tables.???

Hippy
01-10-2012, 12:55 AM
I am getting an error when anyone clicks on the "Find all thanked posts by Matt94GT"

error:



I tried repairing all tables.???

https://vborg.vbsupport.ru/showpost.php?p=2196762&postcount=1534

this will fix you up

ka81
01-10-2012, 01:14 PM
hippy
no result with your own mod.

please, help me with reputation....

Hippy
01-10-2012, 02:18 PM
something on your end is turned off .

ka81
01-10-2012, 02:58 PM
something on your end is turned off .
with this - https://vborg.vbsupport.ru/showthread.php?t=232497 - i do see changes!! reputation is growing!
but in threads in profiles under avatars - still no chenges...

Hippy
01-10-2012, 03:04 PM
that mod will show you it's working
now why that rep # does not change I have no idea .. was wondering that myself
check vb.com..

but all is working ..

that # does change tho.. but it looks like you need a large rep # for it to do so.. example
Rep Power: 23
has a total of (1940 point(s) total)

so I am not sure how this works..

WoodChuck'r
01-13-2012, 11:28 AM
Does this not work with 4.1.9...???

I keep getting "XML Error: No element found" :confused:

ForceHSS
01-13-2012, 12:10 PM
are you using the one in my sig?

Bulbucan
01-13-2012, 12:25 PM
Got 2 problems, how to fix it ?? Im using AfterMath style.

https://vborg.vbsupport.ru/external/2012/01/42.jpg

DS MrSinister
01-13-2012, 02:25 PM
Got 2 problems, how to fix it ?? Im using AfterMath style.



here is a fix for that. it will fix the postbit one..


https://vborg.vbsupport.ru/showpost.php?p=2252350&postcount=1870

I.G.O.T.A.
01-13-2012, 06:00 PM
It works in 4.1.10, but not in my other forum which is 4.1.9. I'm confused.

Hippy
01-13-2012, 08:18 PM
in addation to what DS MrSinister posted Bulbucan, you'll also have to add the code they are using to surround the rest

Bulbucan
01-13-2012, 10:10 PM
here is a fix for that. it will fix the postbit one..


https://vborg.vbsupport.ru/showpost.php?p=2252350&postcount=1870

that doesnt fixed my problem.

Hippy
01-13-2012, 10:36 PM
post_thanks_postbit_info template



<vb:if condition="$post['userid']">
<dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<dd>{vb:rawphrase post_thanks_time_post}</dd>
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
<dd >{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
<vb:else />
<dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
</vb:if>
</vb:if>

try this ..
and post me your postbit template here, complete

WoodChuck'r
01-14-2012, 12:56 AM
are you using the one in my sig?



Yes. I am selecting to upload the "post_thanks.php" file and this is what I see -

https://vborg.vbsupport.ru/external/2012/01/43.jpg


No matter how long I let it sit for or how many times I try, nothing happens.

sadiq6210
01-14-2012, 04:22 AM
Yes. I am selecting to upload the "post_thanks.php" file and this is what I see -

https://vborg.vbsupport.ru/external/2012/01/43.jpg


No matter how long I let it sit for or how many times I try, nothing happens.

Are you trying to upload php file from admincp?

Upload the xml file from admincp and the other files you can upload it using one of the FTP programs.

WoodChuck'r
01-14-2012, 04:46 AM
That's where I'm confused - what/where is an FTP program....??

I must be uploading it wrong....

sadiq6210
01-14-2012, 05:53 AM
That's where I'm confused - what/where is an FTP program....??

I must be uploading it wrong....

When you install the vb script, How did you upload the files to your website?
In same way you can upload the mod files

For example, I am using LeapFTP program
http://www.leapware.com/download.html

Also, you can use (File manager) in your CPANEL

Bulbucan
01-14-2012, 10:30 AM
and post me your postbit template here, complete

Code you gaved wont fix it, and here it is my postbit template.

{vb:raw template_hook.postbit_start}
<li class="postbit postbitim postcontainer" id="post_{vb:raw post.postid}">
<div class="postdetails_noavatar">
<div class="posthead">

<span class="postdate {vb:raw post.statusicon}">
<vb:if condition="$show['announcement']">
<span class="date">{vb:rawphrase x_until_y, {vb:raw post.startdate}, {vb:raw post.enddate}}</span>
<vb:else />
<span class="date">{vb:raw post.postdate}<vb:if condition="!$show['detailedtime']">&nbsp;<span class="time">{vb:raw post.posttime}</span></vb:if></span>
</vb:if>
</span>
<span class="nodecontrols">
<vb:if condition="$post['postid'] AND $post['threadid'] AND !$show['moderated']">
<a name="post{vb:raw post.postid}" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_post}}#post{vb:raw post.postid}" class="<vb:if condition="$show['inlinemod']">ie</vb:if>postcounter">#{vb:raw post.postcount}</a><a id="postcount{vb:raw post.postid}" name="{vb:raw post.postcount}"></a>
</vb:if>
<vb:if condition="$show['moderated']">{vb:rawphrase moderated_post}</vb:if>
<vb:if condition="$show['inlinemod']">
<label for="post_imod_checkbox_{vb:raw post.postid}"><input class="postimod" type="checkbox" id="post_imod_checkbox_{vb:raw post.postid}" name="plist[{vb:raw post.postid}]" value="{vb:raw post.checkbox_value}" /></label>
</vb:if>
</span>

</div>

<div class="userinfo<vb:if condition="!$show['avatar']">_noavatar</vb:if>">
<div class="contact">
<vb:if condition="$show['avatar']">
<a class="postuseravatarlink" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
<vb:if condition="$post.avatarurl">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
<vb:else />
<img src="{vb:stylevar imgdir_misc}/unknown.gif" />
</vb:if>
</a>
</vb:if>
<div class="username_container">
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<vb:else />
<span class="username guest">{vb:raw post.musername}</span>
</vb:if>
<span class="usertitle">
{vb:raw post.usertitle}
</span>
<vb:if condition="$post['rank']">
<span class="rank">{vb:raw post.rank}</span>
</vb:if>

{vb:raw template_hook.postbit_userinfo_left}
<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reputationdisplay}</span>
</vb:if>
<vb:if condition="$post['userid']">
<div class="imlinks">
{vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
</div>
</vb:if>
</div>
</div>
<vb:if condition="$post['userid']">
<div class="userinfo_extra">
<dl class="userstats">
{vb:raw post.crowns}{vb:raw post.champtext}<br />
<vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></vb:if>
<vb:if condition="$post['field2']"><dt>{vb:rawphrase location_perm}</dt> <dd>{vb:raw post.field2}</dd></vb:if>
<vb:if condition="$post['age']"><dt>{vb:rawphrase age}</dt> <dd>{vb:raw post.age}</dd></vb:if>
<dt>{vb:rawphrase posts}</dt> <dd>{vb:raw post.posts}</dd>
{vb:raw template_hook.postbit_userinfo_right_after_posts}
</dl>
<vb:if condition="$show['infraction'] OR $show['reppower']">
<dl class="user_rep">

<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
</vb:if>
</vb:if>
</dl>
</vb:if>
{vb:raw template_hook.postbit_userinfo_right}
</div>
</vb:if>
</div>
</div>

<div class="postbody">
{vb:raw template_hook.postbit_messagearea_start}
<div class="postrow">
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="posttitle icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>
<vb:if condition="$post['isfirstshown']">
{vb:raw ad_location.ad_showthread_firstpost_start}
{vb:raw ad_location.thread_first_post_content}
</vb:if>
<vb:if condition="$post['islastshown']">
{vb:raw ad_location.thread_last_post_content}
</vb:if>
<div class="content<vb:if condition="$show['first_ad'] OR $show['last_ad']"> hasad</vb:if>">
<div id="post_message_{vb:raw post.postid}">
<blockquote class="postcontent restore">
{vb:raw post.message}
</blockquote>
</div>

<vb:if condition="$show['attachments']">
<div class="attachments">

<vb:if condition="$show['thumbnailattachment']">
<fieldset class="postcontent">
<legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" alt="{vb:rawphrase attached_thumbnails}" /> {vb:rawphrase attached_thumbnails}</legend>
{vb:raw post.thumbnailattachments}
</fieldset>
</vb:if>

<vb:if condition="$show['imageattachment']">
<fieldset class="postcontent">
<legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_images}</legend>
{vb:raw post.imageattachments}
</fieldset>
</vb:if>

<vb:if condition="$show['imageattachmentlink']">
<fieldset class="postcontent">
<legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_images}</legend>
<ul>
{vb:raw post.imageattachmentlinks}
</ul>
</fieldset>
</vb:if>

<vb:if condition="$show['otherattachment']">
<fieldset class="postcontent">
<legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_files}</legend>
<ul>
{vb:raw post.otherattachments}
</ul>
</fieldset>
</vb:if>

<vb:if condition="$show['moderatedattachment']">
<fieldset class="postcontent">
<legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attachments_pending_approval}</legend>
<ul>
{vb:raw post.moderatedattachments}
</ul>
</fieldset>
</vb:if>

</div>
<!-- / attachments -->
</vb:if>


</div>
<vb:if condition="$show['postedited']">
<!-- edit note -->
<blockquote class="postcontent lastedited">
<!-- <img src="{vb:stylevar imgdir_button}/edit_40b.png" class="inlineimg" alt="" /> -->
<vb:if condition="$show['postedithistory']">
{vb:rawphrase last_edited_link_by_x_on_y_at_z_postid, {vb:raw post.edit_username}, {vb:raw post.edit_date},
{vb:raw post.edit_time}, {vb:raw post.historyurl}}
<vb:else />
{vb:rawphrase last_edited_by_x_on_y_at_z, {vb:raw post.edit_username}, {vb:raw post.edit_date}, {vb:raw post.edit_time}}
</vb:if>
<vb:if condition="$post['edit_reason']">
<span class="reason">{vb:rawphrase reason}:</span> {vb:raw post.edit_reason}
</vb:if>
</blockquote>
<!-- / edit note -->
</vb:if>

{vb:raw template_hook.postbit_signature_start}
{vb:raw ad_location.ad_showthread_firstpost_sig}
<vb:if condition="$post['signature']">
<blockquote class="signature restore"><div class="signaturecontainer">{vb:raw post.signature}</div></blockquote>
</vb:if>

{vb:raw template_hook.postbit_signature_end}
</div>
</div>
<div class="postfoot">
<div class="textcontrols floatcontainer">
<span class="postcontrols">
{vb:raw template_hook.postbit_controls}
<img style="display:none" id="progress_{vb:raw post.postid}" src="{vb:stylevar imgdir_misc}/progress.gif" alt="{vb:rawphrase loading_editor_please_wait}" />
<vb:if condition="$post['editlink']">
<a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
<vb:if condition="THIS_SCRIPT != 'usernote' && THIS_SCRIPT != 'announcement'"><span class="seperator">&nbsp;</span></vb:if>
</vb:if>

<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}&amp;noquote=1" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>
<span class="seperator">&nbsp;</span>
</vb:if>
<vb:if condition="$post['replylink']">
<a id="qrwq_{vb:raw post.postid}" class="newreply" href="{vb:raw post.replylink}" rel="nofollow" ><img id="quoteimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase reply_with_quote}" /> <vb:if condition="$post['forwardlink']">{vb:rawphrase reply_to_private_message}<vb:else />{vb:rawphrase reply_with_quote}</vb:if></a>
<vb:if condition="$show['multiquote_post']"><span class="seperator">&nbsp;</span></vb:if>
</vb:if>
<vb:if condition="$show['multiquote_post']">
<a class="multiquote" href="{vb:raw post.replylink}" rel="nofollow" onclick="return false;" id="mq_{vb:raw post.postid}"><img id="mq_image_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase multi_quote_this_message}" />&nbsp;</a>
</vb:if>
</span>

<span class="postlinking">
<vb:if condition="!$post['forwardlink'] && THIS_SCRIPT != 'usernote' && THIS_SCRIPT != 'announcement'">
<vb:if condition="$promote_sectionid AND $promote_sectionid != -1">
<a href="{vb:raw promote_url}" class="promotecms">{vb:rawphrase promote_to_article}</a>
<span class="seperator">&nbsp;</span>
</vb:if>
</vb:if>
{vb:raw template_hook.postbit_controls}

{vb:raw post.iplogged}
<vb:if condition="$post['forwardlink']">
<a class="forwardpost" href="{vb:raw post.forwardlink}" rel="nofollow" ><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase forward_message}" /> {vb:rawphrase forward}</a>
<vb:if condition="$show['reputationlink'] OR $show['infractionlink'] OR $show['moderated'] OR $show['spam'] OR $show['deletedpost'] OR $show['redcard'] OR $show['yellowcard']"><span class="seperator">&nbsp;</span></vb:if>
</vb:if>

<vb:if condition="$show['reputationlink']">
<span class="reputationpopupmenu popupmenu popupcustom" title="{vb:raw post.postid}"><a class="popupctrl reputation" href="reputation.php?{vb:raw session.sessionurl}do=addreputation&amp;p={vb:raw post.postid}" title="{vb:rawphrase add_reputation}" rel="nofollow" id="reputation_{vb:raw post.postid}"><!--<img src="{vb:stylevar imgdir_button}/reputation-40b.png" alt="{vb:rawphrase add_reputation}" />-->&nbsp;</a></span>
</vb:if>

<vb:if condition="$show['infractionlink']">
&nbsp;<a class="infraction" href="infraction.php?{vb:raw session.sessionurl}do=report&amp;p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase add_infraction_for_x, {vb:raw post.username}}"><!-- <img src="{vb:stylevar imgdir_button}/add-infraction_sm.png" alt="{vb:rawphrase add_infraction_for_x, {vb:raw post.username}}" /> --> &nbsp;</a> &nbsp;
</vb:if>
<vb:if condition="$show['reportlink']">
&nbsp;<a class="report" href="{vb:raw post.reportlink}" rel="nofollow" title="{vb:rawphrase report_bad_post}"><!-- <img src="{vb:stylevar imgdir_button}/report-40b.png" alt="{vb:rawphrase report_bad_post}" /> -->&nbsp;</a> &nbsp;
</vb:if>

<vb:if condition="$show['moderated']">
<img class="moderated" src="{vb:stylevar imgdir_misc}/moderated_sm.png" alt="{vb:rawphrase moderated_post}" />
</vb:if>
<vb:if condition="$show['spam']">
<img class="spam" src="{vb:stylevar imgdir_misc}/spam_detected.png" alt="{vb:rawphrase spam_post}" />
</vb:if>
<vb:if condition="$show['deletedpost']">
<vb:if condition="$show['managepost']">
<a class="deleted" href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}postings.php?{vb:raw session.sessionurl}do=managepost&amp;p={vb:raw post.postid}" title="{vb:rawphrase manage}">&nbsp;</a>
<vb:else />
<img class="deleted_nolink" class="inlineimage" src="{vb:stylevar imgdir_button}/deleted_sm.png" alt="{vb:rawphrase deleted_post}" />
</vb:if>
</vb:if>
<vb:if condition="$show['redcard']">
<a class="redcard" href="infraction.php?{vb:raw session.sessionurl}do=view&amp;p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_infraction}"><!-- <img src="{vb:stylevar imgdir_button}/red-card_sm.png" alt="{vb:rawphrase received_infraction}" /> --> &nbsp;</a>
<vb:elseif condition="$show['yellowcard']" />
<a class="yellowcard" href="infraction.php?{vb:raw session.sessionurl}do=view&amp;p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_warning}"><!--<img src="{vb:stylevar imgdir_button}/yellow-card_sm.png" alt="{vb:rawphrase received_warning}" /> --> &nbsp;</a>
</vb:if>
<vb:if condition="$post['api_platform']">
<vb:if condition="$post['api_platform_link']">
<a class="mobile mobile_{vb:raw post.api_platform}" href="{vb:raw post.api_platform_link}" rel="nofollow" title="{vb:rawphrase {vb:raw post['api_platform_link_title']}}">{vb:rawphrase {vb:raw post['api_platform_link_phrase']}}</a>
<vb:else />
<span class="mobile mobile_{vb:raw post.api_platform}">{vb:rawphrase {vb:raw post['api_platform_link_phrase']}}</span>
</vb:if>
</vb:if>
</span>
</div>
</div>
<hr />
</li>
{vb:raw template_hook.postbit_end}

Hippy
01-14-2012, 03:39 PM
template seems stock
are you using postbit_legacy
your style is edited
and there is other code to make the surround
was this template or the postbit_legacy edited ...

need to find the code they are using and add it to your post thanks so it will match your styles

whats the name of the style.. and or who made it

@
WoodChuck'r
ftp is what you use to get files to your server like the board files..
the xml file in the mod zip file is the only thing that goes through the admincp import product
the error about is because you are trying to upload files through there

and you can not import the product xml file UNLESS you upload the mod files to your ftp..

hope you got it now

if not feel free to shoot me a pm

Bulbucan
01-14-2012, 08:53 PM
postbit_legacy, and im using AfterMath style made by http://mysticdigital.com

Hippy
01-14-2012, 11:19 PM
postbit_legacy, and I'm using AfterMath style made by http://mysticdigital.com
that template I sent you should work .. BUT you have something other editing your postbit
what mod or edit do you have to that area..
some kind of enhancement

BOZOGLU
01-15-2012, 01:55 AM
4.1.10 not working

Videx
01-15-2012, 02:22 AM
4.1.10 not workingWhat does that mean? If you really can't get 4.1.0 working then go to vb.com and read some threads and do some searches.

If you're trying to say this mod has worked for you for years and after the upgrade to 4.1.0 it has stopped, then say so.

If you're trying to say you've just installed it on a new 4.1.0 board, then say that. And assure us you've read THIS ENTIRE THREAD so we know you aren't just being lazy.

Hippy
01-15-2012, 03:20 AM
Got 2 problems, how to fix it ?? Im using AfterMath style.

https://vborg.vbsupport.ru/external/2012/01/42.jpg
ok I spend hours playing CSI here with the little info you gave here

I think it looks like your using this mod eTiKeT? 2011 Posbit_legacy - Postbit Details ??
https://vborg.vbsupport.ru/showthread.php?t=274568&highlight=userinfo_extra

so you will need to replace your "post_thanks_postbit_info" template with this
over write the template completely


<vb:if condition="$post['userid']">
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
{vb:rawphrase post_thanks_thanks} <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd></div>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
{vb:rawphrase post_thanks_time_post}
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</div>
<vb:else />
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</div>
</vb:if>
</vb:if>

trainer
01-17-2012, 03:03 PM
i just upgraded to 4.1.10 and this is giving me this message when i try to install

This product is not compatible with version 4.1.10 of vBulletin.

AZReptile1
01-17-2012, 03:23 PM
I know 143 pages is ridiculous to go through, but this hack hasn't been supported as this version since Jan 2010. It will not work with 4.1.10 "out of the box". To help the people who are still viewing this thread (100's and 100's), - has someone picked the ball up and is there a version that does work with 4.1.10 (other than the dbtech lite program which ads credits/links to the bottom of your forums)?

sadiq6210
01-17-2012, 03:48 PM
<a href="https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847" target="_blank">https://vborg.vbsupport.ru/showp...postcount=1847</a>

bremereric
01-18-2012, 02:52 AM
Man it's so sad that the original developer drop the ball on this great hack. I can't believe how much ForceHSS and Hippy have done to keep this alive. Great job guys.

Hippy
01-18-2012, 07:28 PM
welcome any time
glad to help keep this mod alive..

WoodChuck'r
01-18-2012, 07:31 PM
Man it's so sad that the original developer drop the ball on this great hack. I can't believe how much ForceHSS and Hippy have done to keep this alive. Great job guys.

Couldn't agree with ya more. Great to have help of those in the know! :)

Papa Bear
01-18-2012, 08:18 PM
I know 143 pages is ridiculous to go through, but this hack hasn't been supported as this version since Jan 2010. It will not work with 4.1.10 "out of the box". To help the people who are still viewing this thread (100's and 100's), - has someone picked the ball up and is there a version that does work with 4.1.10 (other than the dbtech lite program which ads credits/links to the bottom of your forums)?

Use this version for 4.1.10. as posted by ForceHss. I have 4.1.10 and it works fine.

https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847

slinky
01-21-2012, 07:16 PM
While I like this hack a great deal, I was wondering if someone would be able to convert my thank yous to "reputation." While this works, it's not supported and I'd rather get something that is and will make a better effort to implement the "reputation" button. Has anyone done this, e.g. "best answer" or "+1" - I'd be interested in paying for a solution and conversion despite this system still working well at 4.1.9.

Hippy
01-21-2012, 08:47 PM
this mod does add reputation if you turn it on and add the amount per thank in the admincp

slinky
01-21-2012, 09:01 PM
this mod does add reputation if you turn it on and add the amount per thank in the admincp

Pretty funny... I had this enabled.

Q: Will it recalculate the amount given for reputation?
Q: Will it calculate reputation and make the database entries if it's turned on to add reputation after the Thanks Module has been working for a while?

I'm afraid to touch the dial, lol. Thankfully I put this in. Honestly... looking at it again and with vB Experience and what I have going... it may be better off to deal with the large load of vB Experience and the convenience of this great plugin.

PS - Thank you for your reply.

Hippy
01-21-2012, 09:56 PM
I am not sure if you use the recount the thanks it will do the reputation as well..
most likely not..

JimxJNM
01-23-2012, 09:38 AM
Can you update it to 4.1.9? i tried installing the XML but it's not compatible with 4.1.9

:(

ForceHSS
01-23-2012, 11:41 AM
Can you update it to 4.1.9? i tried installing the XML but it's not compatible with 4.1.9

:(

it already has been updated link in my sig

DarknessDivine
01-23-2012, 01:37 PM
it already has been updated link in my sig
I have uploaded all of the files from the link in your signature, try to upload the product and it keeps giving this notice:

Please upload the files that came with this Hack before installing or upgrading!

I have checked and double checked, everything has been uploaded.

I am using vb version 4.1.10, clean install.

Hippy
01-23-2012, 01:45 PM
I have uploaded all of the files from the link in your signature, try to upload the product and it keeps giving this notice:


I have checked and double checked, everything has been uploaded.

I am using vb version 4.1.10, clean install.
then they are not uploaded to the correct place where the script expects them

shervin_dvb
01-27-2012, 08:25 PM
The following dependencies were not met:

This product is not compatible with version 4.1.10 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

djbaxter
01-27-2012, 09:04 PM
The following dependencies were not met:

This product is not compatible with version 4.1.10 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Learn to use the "search thread" feature. This issue has been been addressed dozens if not hundreds of times in this thread alone.

majjed2008
01-28-2012, 07:52 AM
i get hundred email every day with error 1146 please kindly how to fix it step by step

Hippy
01-28-2012, 11:36 AM
i get hundred email every day with error 1146 please kindly how to fix it step by step

post the error please

pbforum
01-28-2012, 05:20 PM
This product is not compatible with version 4.1.10 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Hippy
01-28-2012, 05:33 PM
grab the one out of his sig
https://vborg.vbsupport.ru/showpost.php?p=2291370&postcount=2147

solson
01-29-2012, 03:02 AM
I installed this mod on 4.1.9 and it works great... Thanks for the great mod!

I do have a social network icons installed in the user profile field and when I installed this mod, the icons were on the same line as "Thanked x Times in x Posts." I had to adjust the postbit_social1 to add a break and get the icons to the next line. Not sure why it ended up that way to begin with, or if there was a different way I could have fixed it.

My main question is this: Can I remove how many thanks the user gives "Thanks: x" from the user profile field and only keep how many times a user was thanked? And how would this be done? Thanks so much and keep up the good work! :cool:

Danai
01-29-2012, 12:48 PM
Is there a way to change this into a "Like" hack? By this I just mean it would say "*** likes this post" instead of *** thanked for this post, and next to the edit button it would say "like this post" etc.

Cheers, love it by the way!

Hippy
01-29-2012, 12:52 PM
in your adminecp search phrases for thanks and change to like...
when you add thanks to your search box make sure you tick Phrase Text and Phrase Variable Name
to find them

I did it here for sawhawgz http://sawhawgz.com/showthread.php?136-Tapatalk/page3&styleid=3

Hippy
01-29-2012, 01:00 PM
I installed this mod on 4.1.9 and it works great... Thanks for the great mod!

I do have a social network icons installed in the user profile field and when I installed this mod, the icons were on the same line as "Thanked x Times in x Posts." I had to adjust the postbit_social1 to add a break and get the icons to the next line. Not sure why it ended up that way to begin with, or if there was a different way I could have fixed it.

My main question is this: Can I remove how many thanks the user gives "Thanks: x" from the user profile field and only keep how many times a user was thanked? And how would this be done? Thanks so much and keep up the good work! :cool:

edit your post_thanks_postbit template

Danai
01-29-2012, 04:52 PM
in your adminecp search phrases for thanks and change to like...
when you add thanks to your search box make sure you tick Phrase Text and Phrase Variable Name
to find them

Thanks!

Danai
01-29-2012, 05:29 PM
Oh, sorry, was also going to ask if it was possible to move the "The following users thanked for this post" below the post to inside the post.

Attached a screen shot of that.

Also:

Is there a way to align the "Thanks:" under your name to the left instead of the right?
Also attached a photo of that.

Thanks!

solson
01-29-2012, 05:46 PM
edit your post_thanks_postbit template

Thanks for the response! Could you tell me exactly what I should remove, if you wouldn't mind? I took a look at the code and it wasn't too clear to me what to take out. I don't want to ruin the mod by guessing and deleting code.

I don't want to function to disappear, but only to have the display portion of the "Thanks: x" be removed from the user profile field.

Thanks again.

Hippy
01-29-2012, 07:04 PM
edit post_thanks_postbit_info template to do what you want and it should all be in the correct place
this needs to be removed since vb does not use this any longer
style="white-space:nowrap; display:inline; float:
so use this code and take out what you don't want to show as you did the other one..

<vb:if condition="$post['userid']">
<dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<dd>{vb:rawphrase post_thanks_time_post}</dd>
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
<dd >{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
<vb:else />
<dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
</vb:if>
</vb:if>

solson
01-29-2012, 07:55 PM
edit post_thanks_postbit_info template to do what you want and it should all be in the correct place
this needs to be removed since vb does not use this any longer
style="white-space:nowrap; display:inline; float:
so use this code and take out what you don't want to show as you did the other one..

<vb:if condition="$post['userid']">
<dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<dd>{vb:rawphrase post_thanks_time_post}</dd>
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
<dd >{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
<vb:else />
<dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
</vb:if>
</vb:if>

This fixed both of my original problems. Thanks much for taking the time....all is right in the world again. :cool:

diabolicds
02-01-2012, 01:27 PM
Is hack goint to be updated for latest version of vbulletin ?

Maybe someone can help getting lots of Database errors from this mod so I disabled for the moment , if there is any fix for this it would be great thanks in advance here is error:

Database error in vBulletin 4.1.10:

Invalid SQL:

REPLACE INTO vb_search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (0, 'ipxxx', 1, 'member', '', 'post.dateline', 'DESC', 0.03194, 1, '1181,1047,1006,991,603,24', 1328083433, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:3;s:5:\"member\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', '5d361a20a5b456577f4e80681ee2afb0da');

MySQL Error : Table 'mybase_bulletin.vb_search' doesn't exist
Error Number : 1146
Request Date : Wednesday, February 1st 2012 @ 09:03:53 AM
Error Date : Wednesday, February 1st 2012 @ 09:03:53 AM
Script : http://www.myweb.com/board/post_thanks.php?do=findthanks&u=3
Referrer :
IP Address : XXX
Username : Unregistered
Classname : vB_Database
MySQL Version :

ForceHSS
02-01-2012, 02:45 PM
Is hack goint to be updated for latest version of vbulletin ?

Maybe someone can help getting lots of Database errors from this mod so I disabled for the moment , if there is any fix for this it would be great thanks in advance here is error:

there is a fix look over other posts and you will find it

michal72
02-01-2012, 04:44 PM
Oh, sorry, was also going to ask if it was possible to move the "The following users thanked for this post" below the post to inside the post

See BirdOPrey5 soultion https://vborg.vbsupport.ru/showthread.php?t=266358 and posts #35, #36 and #49

Regards

Hippy
02-01-2012, 10:24 PM
* hint ForceHSS sig

ForceHSS
02-02-2012, 12:16 AM
* hint ForceHSS sig

lol was not going to tell him

Hippy
02-02-2012, 12:21 AM
lol was not going to tell him

I had to .. was so obvious .. I read my @ss off
but it seems noone wants to even read a page or 2 before downloading a mod..

I always read the last few pages to see the issues for installing it ..

anyway.. all is good

Videx
02-02-2012, 12:25 AM
lol was not going to tell himYa really. I think everyone is doing all the noobs a disservice by simply giving them the answers. The standard response should be more along the lines of "Always read the entire thread before you install a modification. When you're finished, if you still have a question, first assure us you have done all the things recommended.". This teaches them a valuable lesson, and let's face it - nobody can actually disagree with the advice, as it's the stated policy of vb.org.

ForceHSS
02-02-2012, 01:10 AM
it might be the policy of vb but some members are to lazy to even look when the answer is in front of them

fungku
02-02-2012, 08:22 AM
Ya really. I think everyone is doing all the noobs a disservice by simply giving them the answers. The standard response should be more along the lines of "Always read the entire thread before you install a modification. When you're finished, if you still have a question, first assure us you have done all the things recommended.". This teaches them a valuable lesson, and let's face it - nobody can actually disagree with the advice, as it's the stated policy of vb.org.

Read 145 pages?

I have a couple of hours after work before I have to go to sleep.

Between showering and dinner, that doesn't leave a lot of time to read hundreds of pages.

Why not have the solutions to problems inserted or at least linked to in the Mod description?

(thanks for 7.83 by the way, I was about to give up on the mod for now)

ForceHSS
02-02-2012, 01:34 PM
Version 7.83 (29/08/11 by Forcehss)
Cosmetic changes necessary in postbit for integration purposes.
Changed to allow integration with Post Groans Hack.
reposting this again

diabolicds
02-02-2012, 04:01 PM
there is a fix look over other posts and you will find it

Doesnt look like working well not in my case, updated reuploaded files imported xml enabled mod again and got error again here it is:

Database error in vBulletin 4.1.10:

Invalid SQL:

REPLACE INTO vb_search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (0, 'xxx', 1, 'xxx', '', 'post.dateline', 'DESC', 0.02273, 1, '607', 1328197330, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{}s:6:\"common\";a:0:{}s:5:\"users\";a:1:{i:460;s:3:\"MAN\";}s:6:\"forums\";i:0;s:7:\"options\";a:3:{s:11:\"starteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"action\";s:7:\"process\";}}', 'ba0b986d3f9ec66cb566db179eb75092');

MySQL Error : Table 'mydb_bulletin.vb_search' doesn't exist
Error Number : 1146
Request Date : Thursday, February 2nd 2012 @ 04:42:10 PM
Error Date : Thursday, February 2nd 2012 @ 04:42:11 PM
Script : http://www.myweb.com/board/post_thanks.php?do=findthanks&u=460
Referrer :
IP Address : xxx
Username : Unregistered
Classname : vB_Database
MySQL Version :

Might be conflict with something on my board if for others your version working not sure about it. Thx anyway

ForceHSS
02-02-2012, 05:02 PM
search no long is in vb4 this is vb3 there is a fix for this some where try looking a few pages back until you find it really not sure what page it is on so you need to check them all

diabolicds
02-03-2012, 09:11 AM
search no long is in vb4 this is vb3 there is a fix for this some where try looking a few pages back until you find it really not sure what page it is on so you need to check them all

What do you mean search is no longer in vb4? I never had vb3 always used vb4 ad never had those errors before , so I am really not sure what you are talking about,anyway thanks on your reply I ll disable plugin Thanks and no more errors much easy than searching like 2500 posts on this topic lol .

Cheers and enjoy your weekend all!

sharif_aly
02-03-2012, 08:16 PM
Is it work with 4.1.10 ?

Hippy
02-03-2012, 08:31 PM
What do you mean search is no longer in vb4? I never had vb3 always used vb4 ad never had those errors before , so I am really not sure what you are talking about,anyway thanks on your reply I ll disable plugin Thanks and no more errors much easy than searching like 2500 posts on this topic lol .

Cheers and enjoy your weekend all!

you all square now bud ?:up:

meissenation
02-04-2012, 07:12 PM
Really don't understand why vb3.8 code is in vb4 version, I've gotten over 100 db errors today alone from this damn script.

ForceHSS
02-04-2012, 08:14 PM
not the script its your forums

fungku
02-05-2012, 12:50 AM
Is there any way to view a users thanked posts?

Hippy
02-05-2012, 02:18 AM
your profile and abpout me youll see it down a little

fungku
02-05-2012, 03:29 AM
your profile and abpout me youll see it down a little

I see that stats but they are not linked to anywhere.

itsmeblade
02-05-2012, 08:25 AM
Hi, i have a problem. how can i remove the splitted usernames in the box ?

Hippy
02-05-2012, 11:57 AM
Hi, i have a problem. how can i remove the splitted usernames in the box ?

what version are you using ?

itsmeblade
02-05-2012, 01:35 PM
i'm using vb 4.1.9

Hippy
02-05-2012, 03:57 PM
sorry .. version of the post thanks ..
the one from the author or forceHSS

itsmeblade
02-05-2012, 06:13 PM
the one from the autor, 7.82

Hippy
02-05-2012, 06:29 PM
use forceHSS 's in his sig ..
or email me I pmes you before

fungku
02-05-2012, 07:59 PM
I don't understand why 7.83 can't have a download link in the main description?

And how can I get links to thanked posts to show up in profiles?

Hippy
02-06-2012, 01:48 AM
why because it was put together by forceHSS not Abe1
he has not been around and there is a couple of us that are trying to keep it alive..

https://vborg.vbsupport.ru/showpost.php?p=2264681&postcount=1943

ForceHSS
02-06-2012, 01:55 AM
What do you mean search is no longer in vb4? I never had vb3 always used vb4 ad never had those errors before , so I am really not sure what you are talking about,anyway thanks on your reply I ll disable plugin Thanks and no more errors much easy than searching like 2500 posts on this topic lol .

Cheers and enjoy your weekend all!

https://vborg.vbsupport.ru/showpost.php?p=2196762&postcount=1534
here is your fix

wickedstangs
02-07-2012, 01:43 AM
https://vborg.vbsupport.ru/showpost.php?p=2196762&postcount=1534
here is your fix

thanks:)

Luffy-9
02-07-2012, 07:12 AM
didn't work with VB 4.1.10 :s

ForceHSS
02-07-2012, 07:28 AM
didn't work with VB 4.1.10 :s

then you have not installed the one in my sig as it does

TinCow1
02-07-2012, 03:01 PM
I can confirm that ForceHSS's search version works properly with 4.1.10. However, in the version in his link the entire search function is commented out, which I suspect is why others have reported that it doesn't work. Just remove the commenting from post_thanks_memberinfo_block and it shows up perfectly fine.

TinCow1
02-07-2012, 04:40 PM
I check the post_thanks_box_bit, and it has "&nbsp;" in there, but don't know still have this error.

That &nbsp; is the space between the name and the date, which is not what you want. The code as written has no space after the comma. You have to add it in manually at the very end of the line. This is what the full code should look like to display the space after the comma:

<a href="member.php?{vb:raw session.sessionurl}u={vb:raw thank.userid}" rel="nofollow">{vb:raw thank.username}</a><vb:if condition="$date_thank">&nbsp;({vb:raw date_thank})</vb:if>{vb:raw virg}&nbsp;

Hippy
02-07-2012, 08:24 PM
that makes a large space ..
I don't have this issue with spacing
in my sig is all the fixes for this mod and it works perfect as it should spacing and all
if the spacing is still off it's a template issue or a custom style conflicting

j1gsaw
02-08-2012, 07:18 AM
is there any top thank in a month statistic?

Ricsca
02-08-2012, 12:29 PM
in vb 4.1.10 dont install....

TinCow1
02-08-2012, 12:34 PM
that makes a large space ..
I don't have this issue with spacing
in my sig is all the fixes for this mod and it works perfect as it should spacing and all
if the spacing is still off it's a template issue or a custom style conflicting

All I can say is that with your code I had no spaces after the commas, it was just NAME,NAME. While I have many heavily customized styles, it was also that way on vB default, which I have not customized. Adding in the second &nbsp; fixed the problem for me on all styles and only added in a normal sized space. It now looks entirely proper on my site. If your code as written gives good spacing for others, then it's obviously best not to add in an additional space. However, your code didn't add the space for me, and it seems clear it didn't add it for haidm either. Perhaps we're both running some other module that is causing this difference in appearance.

Mark.B
02-08-2012, 12:37 PM
in vb 4.1.10 dont install....
I am running on 4.1.10, no issues at all.

ForceHSS
02-08-2012, 12:50 PM
in vb 4.1.10 dont install....

then you are not using the updated one if it does not work for you

Hippy
02-08-2012, 08:23 PM
All I can say is that with your code I had no spaces after the commas, it was just NAME,NAME. While I have many heavily customized styles, it was also that way on vB default, which I have not customized. Adding in the second &nbsp; fixed the problem for me on all styles and only added in a normal sized space. It now looks entirely proper on my site. If your code as written gives good spacing for others, then it's obviously best not to add in an additional space. However, your code didn't add the space for me, and it seems clear it didn't add it for haidm either. Perhaps we're both running some other module that is causing this difference in appearance.

yeah running into additional.css you may run into this issue ..
not a problem but 99% don't need it but when it was nentioned I tested it is all..
I am glad you got it looking go in your site ..
but as vb goes on things change so the mods that use this comma need to be updated .. check out some of Paul M's:up: mods..
youll see the comments there ...anyway what counts is that it works and there are no errors ..
sometime mods need small tweaks ;)

enjoy

Hippy
02-08-2012, 08:25 PM
in vb 4.1.10 dont install....

like eveyone here said it works with no issue ..
and these are the people that are helping kleep this great mod alive..

If you have a question or read things confirm before posting a comment like that ..

I can show you 100 sites that use it with vb4.1.19 that work as it should 100%

enjooy and have a great day

thermax04
02-08-2012, 10:11 PM
Installed on 4.1.10
i need to know where I can find this word to translate:
The Following User Says Thank You to xxxx For This Useful Post

Hippy
02-08-2012, 10:29 PM
$vbphrase[post_thanks_user_says]

admincp
Languages & Phrases
search for

The Following User Says Thank You to {1} For This Useful Post:

make sure you have Phrase Text and Phrase Variable Name checked before you hit find
then edit it to

what you like you need to leave {1} tho anything else you can change

example

changet to The Following User Said Thank's to {1} For This Post yhen hit save

thermax04
02-08-2012, 10:33 PM
$vbphrase[post_thanks_user_says]

admincp
Languages & Phrases
search for

The Following User Says Thank You to {1} For This Useful Post:

mak sure you have Phrase Text and Phrase Variable Name checked before you hit find
then edit it to


The Following User Says Thank you to {1} For This Useful Post

Thanks, i found it and translated it.
Now, i want also to translate those (in user Info):
Thanks: x times
Thanked 1 Time in 1 Post
where I can find them?

Hippy
02-08-2012, 11:29 PM
search Languages & Phrases
the same way but add thank for the search word and youll see them all
make sure you have Phrase Text and Phrase Variable Name checked before you hit find

enjoy

thermax04
02-08-2012, 11:41 PM
search Languages & Phrases
the same way but add thank for the search word and youll see them all
make sure you have Phrase Text and Phrase Variable Name checked before you hit find

enjoy

I tried but i found too many results, i don know which one to change
Can I change them in the product-post_thanks.xml file then import it again?

Found them , changed them
Thanks

Hippy
02-09-2012, 02:58 AM
I tried but i found too many results, i don know which one to change
Can I change them in the product-post_thanks.xml file then import it again?

Found them , changed them
Thanks
sure you can and then jst re upload it

Ricsca
02-09-2012, 07:28 AM
then you are not using the updated one if it does not work for you

I download the link in home page...

The following dependencies were not met:

This product is not compatible with version 4.1.10 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

ForceHSS
02-09-2012, 11:55 AM
I download the link in home page...

as i said and will again you are not using the updated one look at my sig for it

Ricsca
02-09-2012, 12:05 PM
You want the updated package on the home page.
A new user how do you know that the updated package in post number 1847?
I stumbled upon the link in your signature ...

ForceHSS
02-09-2012, 12:07 PM
You want the updated package on the home page.
A new user how do you know that the updated package in post number 1847?
I stumbled upon the link in your signature ...

look at the op name and mine are they the same no so how can i add it to there

cagbaazee
02-09-2012, 02:51 PM
Hi it donot work work version 4.1.10, it say it only work with version upto 4.1.0.. do any has problem with these plugin update / install

ForceHSS
02-09-2012, 04:53 PM
Hi it donot work work version 4.1.10, it say it only work with version upto 4.1.0.. do any has problem with these plugin update / install

you joking really do you ever check other posts I give up

DS MrSinister
02-09-2012, 05:22 PM
ForceHSS please dont give up on this.. if it wasn't for you and hippy this great mod would be dead in the water..

I thank you very much what you two have done.

Sin

slipkot
02-09-2012, 05:33 PM
@ForceHSS Using the version you have at your signature, search function does not work. Some pages back there is a fix. Is it possible to include it on your version so search function works on default. :)

ForceHSS
02-09-2012, 06:06 PM
@ForceHSS Using the version you have at your signature, search function does not work. Some pages back there is a fix. Is it possible to include it on your version so search function works on default. :)

have you checked the one in my sig lately I did update a new one with a search fix if that is what you are talking about

Hippy
02-09-2012, 08:31 PM
You want the updated package on the home page.
A new user how do you know that the updated package in post number 1847?
I stumbled upon the link in your signature ...
Abe hasn't been online for over a year and we been updating this on our own to keep it alive for everyone...
there was a post a page or 2 back about the search in members profile being commented out ..
if you don't feel like doing the manual edit forceHSS
was nyce enough to fix it and add a up to date version ... and is lined in his sig ..
since we can't repost this or update the first post this is the Best we can do...

shervin_dvb
02-10-2012, 05:58 AM
hi
this version in not work on vb 4.1.10

The new version is coming
Or on the web version of this version 4.1.10 working

slipkot
02-10-2012, 04:02 PM
have you checked the one in my sig lately I did update a new one with a search fix if that is what you are talking about

Sorry my mistake. You are awesome! :)

thermax04
02-10-2012, 08:56 PM
How I can delete or hide the Thanks: xx times from the user postbit

where I can find these options:
Shows how many thanks a user gave in every post of his
Shows how many thanks a user gave in profile
Shows how many thanks a user got
Shows how many posts or a user are thanked
Shows info in profile
Search for a users thanked posts
Search for all thanked posts

thermax04
02-10-2012, 09:05 PM
hi
this version in not work on vb 4.1.10

The new version is coming
Or on the web version of this version 4.1.10 working

V 7.83 is working on my VB 4.1.10

Nelson58
02-10-2012, 11:21 PM
When I installed this, the message under user's profile info on posts" x thanks in x posts" was leaking into the body of the message, throwing the formatting off.

How would I fix that?

Nelson

cbiweb
02-11-2012, 12:23 AM
V 7.83 is working on my VB 4.1.10
7.83???

Hippy
02-11-2012, 12:51 AM
When I installed this, the message under user's profile info on posts" x thanks in x posts" was leaking into the body of the message, throwing the formatting off.

How would I fix that?


Nelson
post_thanks_postbit_info template change to this .. over write and save..


<vb:if condition="$post['userid']">

<dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>

<vb:if condition="$post['post_thanks_thanked_times'] == 1">

<dd>{vb:rawphrase post_thanks_time_post}</dd>

<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />

<dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>

<vb:else />

<dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>

</vb:if>

</vb:if>

Hippy
02-11-2012, 12:52 AM
7.83???

forceHSS 's sig you find it

thermax04
02-11-2012, 06:38 AM
7.83???

Look at the pic

thenashy
02-11-2012, 11:18 AM
I do apologise is this has been answered previous, I never seem to find things with the search on here.

My users love the addon, as do I, however, is there a way to move the Like/Dislike links and icons to the same area as the reply/edit/etc. icons?

And still leave the users who liked/disliked under the post?

tehbasmentdwell
02-11-2012, 02:09 PM
have you checked the one in my sig lately I did update a new one with a search fix if that is what you are talking about

I installed that version mate (working fine cheers) but i cant find where the option is to search for thanked posts - where should it appear? In usercp? :confused:

P.S. Thanks again for keeping this hack updated :)

Hippy
02-11-2012, 02:15 PM
about me in your public profile

Nelson58
02-11-2012, 02:30 PM
post_thanks_postbit_info template change to this .. over write and save..


<vb:if condition="$post['userid']">

<dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>

<vb:if condition="$post['post_thanks_thanked_times'] == 1">

<dd>{vb:rawphrase post_thanks_time_post}</dd>

<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />

<dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>

<vb:else />

<dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>

</vb:if>

</vb:if>

Thank you!

Nelson

Hippy
02-11-2012, 04:13 PM
welcome...

tehbasmentdwell
02-11-2012, 08:17 PM
about me in your public profile

Strange, its not showing up! Any ideas what i've missed mate?

I installed the hack 7.83 a few weeks ago to try it out and its working perfectly - a user was asking whether you could search your own posts to find out which ones had been thanked so i downloaded the 7.83withsearchfix - uploaded and overwitten the previous files then uploaded the new xml file but nothing seems to have changed

slipkot
02-11-2012, 09:07 PM
Strange, its not showing up! Any ideas what i've missed mate?

I installed the hack 7.83 a few weeks ago to try it out and its working perfectly - a user was asking whether you could search your own posts to find out which ones had been thanked so i downloaded the 7.83withsearchfix - uploaded and overwitten the previous files then uploaded the new xml file but nothing seems to have changed

At template "post_thanks_memberinfo_block" you need to remove the comments... <!-- and -->

tehbasmentdwell
02-11-2012, 10:28 PM
At template "post_thanks_memberinfo_block" you need to remove the comments... <!-- and -->

Simple as that :D Thanks mate, working perfectly now!

swapps
02-11-2012, 10:32 PM
V 7.83 is working on my VB 4.1.10

7.83 Works on my 4.1.10 CMS for me too

bremereric
02-12-2012, 03:09 AM
Okay Hippy or Force. I previously got the 7.83 version installed and working. Now I found you have the 7.83 with search fix. I also downloaded it and will give it a try. Is there certain steps I nead to take. Such as uninstall and reinstall? Thanks.

Hippy
02-12-2012, 11:43 AM
dont uninstall just over write .. files and xml file ..or you will loose all thanks..
the update just removes the comented out search part you can do this
At template "post_thanks_memberinfo_block" you need to remove the comments... <!-- and -->


and no need to update

TinCow1
02-12-2012, 02:06 PM
Does anyone know what code changes would be required to make the list of Thanks received only visible to the person who made the post?

elwizard
02-12-2012, 07:48 PM
Working fine when using English as default lang, but there're some mistakes when using another langs. Thank you anyway.

ForceHSS
02-13-2012, 12:14 AM
Working fine when using English as default lang, but there're some mistakes when using another langs. Thank you anyway.

because it was made for English if you want to translate it you can

Zeckson
02-13-2012, 03:05 AM
I have installed this hack on my forum and it worked great! However, being a photo forum, most of my members would prefer to LIKE the photo post rather than THANK the photo post. Is it possible that the THANK button change into a LIKE button?

I know about the Facebook LIKE but I wanna keep the LIKES to within my forum. Can this be done?

DS MrSinister
02-13-2012, 04:31 AM
@Zeckson

For the button edit the phrase called post_thanks_thanks.

to do this login to admincp go to

Languages & Phrases --> Search in Phrases --> place post_thanks_thanks in the search box. make sure you have Phrase Text and Phrase Variable Name checked.

click on edit and type Like Or Likes or what ever you want it to say.

Hope this helps

--Sin

elwizard
02-13-2012, 06:56 PM
because it was made for English if you want to translate it you can
Yes, I did it. I translated Mod thanks into Spanish lang (my native lang).
I'm really very interested to use this mod on my board, but I need to solve this problem. I guess, problem is not the lang.
It must be something of PHP script, or mod install code or something so, not exactly the lang.

When i choose English lang (testing in localhost before add any change to the server), everything works fine, but when I change the lang to Spanish, is then when I receive next issue:

Warning: Invalid CRT parameters detected in [path]\includes\functions.php on line 4829
I edited PHP file functions.php to check this issue, but it seems to be a a non-directed issue caused by the mod.

Currently I'm checking all PHP mod thanks code to find the cause, and also the install XML code file.

I also tested changing the template (Default style and MW3 theme by MMORPG Games) and error issue is displayed in both cases, when I use Spanish lang.
When I use English lang, no error is displayed, so I believe the template is not the cause of the mistake.

Testing on Vb 4.1.10 version. I have only installed Spanish lang (from vbhispano - elmer), MW3 theme by MMORPG Games (downloaded from here) and this Thanks mod, nothing else.

Still trying to find the problem. Thanks in advance and sorry by my English.

Hippy
02-13-2012, 08:42 PM
@elwizard .. thanks for try to keep up to date ,,
when you figure please be sure to post back
thanks

elwizard
02-13-2012, 08:59 PM
Don't worry Hippy. I'm getting advances about this issue. All seems to be an issue in vbdate vbulletin function when using this mod. I'll post here my results when finished ;)

Hippy
02-13-2012, 09:17 PM
been using this for year and all the boaards I admin at .. not to mention the hours into this mod as forceHSS to keep it alive..

I am sure its vb they fix 10 things and break 50.. or more..

lol