Log in

View Full Version : New Posting Features - [DBTech] Advanced Post Thanks / Like v3 (vB4) [AJAX]


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

dolomites
05-01-2016, 12:54 PM
Ok the option is

Display Button Click Count - Threads
Display Button Click Count - Forums

now buttons are shown, but clicking on, nothing happens

these are the settings
https://vborg.vbsupport.ru/external/2016/05/28.jpg
https://vborg.vbsupport.ru/external/2016/05/29.jpg

https://vborg.vbsupport.ru/external/2016/05/30.jpg

DragonByte Tech
05-01-2016, 03:01 PM
This can happen if your site is loading a very old version of jQuery. Please inspect the source of your site and ensure no jQuery version older than 1.7.1 is loaded.

Fillip

dolomites
05-01-2016, 03:11 PM
GREAT! I had a 1.4.2 inside, thank'you! Now all it works! THANK YOU!

tevbas
05-02-2016, 09:10 AM
hello please help.



Database error in vBulletin 4.2.0:

Invalid SQL:
(
SELECT COUNT(*) AS count, varname
FROM dbtech_thanks_entry AS entry,
(
SELECT postid
FROM post
WHERE threadid = 317911
AND visible IN (1,2,0)
) AS tmp
WHERE entry.contenttype = 'post'
AND entry.varname = 'thanks'
AND contentid = tmp.postid
) UNION ALL (
SELECT COUNT(*) AS count, varname
FROM dbtech_thanks_entry AS entry,
(
SELECT postid
FROM post
WHERE threadid = 317911
AND visible IN (1,2,0)
) AS tmp
WHERE entry.contenttype = 'post'
AND entry.varname = 'likes'
AND contentid = tmp.postid
) UNION ALL (
SELECT COUNT(*) AS count, varname
FROM dbtech_thanks_entry AS entry,
(
SELECT postid
FROM post
WHERE threadid = 317911
AND visible IN (1,2,0)
) AS tmp
WHERE entry.contenttype = 'post'
AND entry.varname = 'dislikes'
AND contentid = tmp.postid
);

MySQL Error : Column 'varname' cannot be null
Error Number : 1048
Request Date : Monday, May 2nd 2016 @ 06:09:20 AM
Error Date : Monday, May 2nd 2016 @ 06:09:20 AM
Script : http://domain.net/showthread.php?317911
Referrer : http://domain.net/index.php
IP Address : ddd.11..222.
Username : Sparta
Classname : vB_Database
MySQL Version : 5.0.96-community-log

DragonByte Tech
05-02-2016, 12:18 PM
Please upgrade your version of MySQL.

Fillip

tevbas
05-02-2016, 12:24 PM
ok Fillip. Thank you so much.

ed762
05-07-2016, 10:39 AM
I have download the lite to see what it looks like.

Is there an option to simply put the like button and the number of likes of that post next to the post report button ( or in the same area) Having a thank bar with the usernames of each like is very cluttered.

DragonByte Tech
05-07-2016, 02:08 PM
I have download the lite to see what it looks like.

Is there an option to simply put the like button and the number of likes of that post next to the post report button ( or in the same area) Having a thank bar with the usernames of each like is very cluttered.That's a Pro-only feature :)


Fillip

ed762
05-11-2016, 10:37 AM
That's a Pro-only feature :)


Fillip

Do you have some screen shots (at your store)? I would like to see what it looks like.

DragonByte Tech
05-11-2016, 08:26 PM
Do you have some screen shots (at your store)? I would like to see what it looks like.Here: https://i.imgur.com/s8rcpAu.png :)


Fillip

Jason92s
05-12-2016, 02:12 PM
Hi, just installed this and all went well. Set it up per the readme file and CHMOD the specified directory. I see the Thank/Like buttons at the bottom of my posts but when I click them, nothing happens. I checked the source for my version of jQuery and it's 1.7.2. Any other suggestions? Thank you.

DragonByte Tech
05-12-2016, 02:13 PM
Have you checked your error console for any JS errors?

Fillip

Jason92s
05-12-2016, 02:20 PM
It's working now! Thank you so much.

DragonByte Tech
05-12-2016, 02:21 PM
That means the files have not been uploaded correctly.

Fillip

chikuru
05-13-2016, 09:32 AM
Is the vbseo likes import only available for PRO? Thanks

DragonByte Tech
05-14-2016, 04:44 PM
Is the vbseo likes import only available for PRO? ThanksNope, it's available in the Lite version too :)


Fillip

jimnyc
05-17-2016, 12:17 PM
I am installing this version right now but not sure if I ran into a problem, or just have to wait. I uploaded all the files without issue, CHMOD the one directory and am now trying to install the XML file, but it gets to this part and just eventually sits. The busy signal sits for about 5 minutes on my machine and then stops. Is it still working in the background? How long should this take? My board has about 800,000 total posts

Thanks!

DragonByte Tech
05-17-2016, 12:19 PM
I am installing this version right now but not sure if I ran into a problem, or just have to wait. I uploaded all the files without issue, CHMOD the one directory and am now trying to install the XML file, but it gets to this part and just eventually sits. The busy signal sits for about 5 minutes on my machine and then stops. Is it still working in the background? How long should this take? My board has about 800,000 total posts

Thanks!That'll most likely be altering the post table yeah, if your server is slow then it can take a long time to complete the altering of that table.


Fillip

jimnyc
05-17-2016, 12:22 PM
That'll most likely be altering the post table yeah, if your server is slow then it can take a long time to complete the altering of that table.


Fillip

Wow, that was fast, thanks so much!!

Do you know, will it automatically update/refresh my screen once completed?

Again, thanks much for a quick reply!

-Jim

DragonByte Tech
05-17-2016, 12:27 PM
Wow, that was fast, thanks so much!!

Do you know, will it automatically update/refresh my screen once completed?

Again, thanks much for a quick reply!

-JimIf the page has stopped loading you can run the queries manually
alter table post add dbtech_thanks_cache mediumtext
alter table post add dbtech_thanks_disabledbuttons int(10) unsigned not null default '0'
alter table post add dbtech_thanks_requiredbuttons_content int(10) unsigned not null default '0'
alter table post add dbtech_thanks_requiredbuttons_attach int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_disabledbuttons int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_requiredbuttons_content int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_requiredbuttons_attach int(10) unsigned not null default '0'

Remember to add your table prefix if you use it.


Fillip

jimnyc
05-17-2016, 12:42 PM
If the page has stopped loading you can run the queries manually
alter table post add dbtech_thanks_cache mediumtext
alter table post add dbtech_thanks_disabledbuttons int(10) unsigned not null default '0'
alter table post add dbtech_thanks_requiredbuttons_content int(10) unsigned not null default '0'
alter table post add dbtech_thanks_requiredbuttons_attach int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_disabledbuttons int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_requiredbuttons_content int(10) unsigned not null default '0'
alter table thread add dbtech_thanks_requiredbuttons_attach int(10) unsigned not null default '0'

Remember to add your table prefix if you use it.


Fillip

The first 3 or so told me that they were already there, and then the rest ran successfully without issue. But I don't see it under manage products, nor anywhere to modify settings. What would be next if I ran these SQL queries manually?

DragonByte Tech
05-17-2016, 12:42 PM
Attempt the installation again :)


Fillip

jimnyc
05-17-2016, 12:52 PM
Attempt the installation again :)


Fillip

That did it, thanks much!!

jimnyc
05-17-2016, 03:26 PM
When I click on the notifications, it brings me to the profile page - but they are listed as oldest first, and you must go to a few pages later to get to the latest clicks. Is there a way to reverse this, so current clicks are shown first?

Thanks!

DragonByte Tech
05-17-2016, 03:27 PM
When I click on the notifications, it brings me to the profile page - but they are listed as oldest first, and you must go to a few pages later to get to the latest clicks. Is there a way to reverse this, so current clicks are shown first?

Thanks!Are you sure? There is absolutely nothing in the code that indicates oldest first, in fact it explicitly sorts by newest first. Out of the several thousand people that uses this mod, this is the first time anyone has reported this as well.


Fillip

jimnyc
05-17-2016, 03:31 PM
Are you sure? There is absolutely nothing in the code that indicates oldest first, in fact it explicitly sorts by newest first. Out of the several thousand people that uses this mod, this is the first time anyone has reported this as well.


Fillip

Before I take a screenshot to show you - I must add that it is still running the importer as I write this, would that affect anything? But I'm gathering a screenshot to show you what I mean now.

jimnyc
05-17-2016, 03:33 PM
Here's a shot of only the first page, but you can see the older date is on top:

http://i.imgur.com/Cvv8XsE.jpg

DragonByte Tech
05-17-2016, 03:35 PM
Before I take a screenshot to show you - I must add that it is still running the importer as I write this, would that affect anything? But I'm gathering a screenshot to show you what I mean now.Yes, that will be the cause. The problem is that whatever system you are importing from ordered the entries in an incorrect way.

For performance reasons, this mod will order entries by entry ID, e.g. the order they were inserted in. If your system and/or database table did not insert entries in a chronological order, then the importer (and subsequently, the historical display) will import them in the same order.

This will not be an issue going forward.


Fillip

jimnyc
05-17-2016, 03:48 PM
Yes, that will be the cause. The problem is that whatever system you are importing from ordered the entries in an incorrect way.

For performance reasons, this mod will order entries by entry ID, e.g. the order they were inserted in. If your system and/or database table did not insert entries in a chronological order, then the importer (and subsequently, the historical display) will import them in the same order.

This will not be an issue going forward.


Fillip

Thanks for the detailed explanation. I'm using the "Abes Thank you hack 7.85". Not sure if it did something improper now would I have a clue how to check anyway! LOL

Thanks for all of your help. :)

IggyP
05-24-2016, 10:46 PM
hello,
im trying to figure out....is it possible to integrate this closer into vbcredits?

we want to make a custom button that can give points from one members account to anothers...

i thought it could be a button that charges say 10 pts to push, then a credits rule that if someone pushes that button on your post you get 10pts, but i dont see them in the list...

we have pro versions of both products installed btw...

DragonByte Tech
05-27-2016, 10:41 PM
hello,
im trying to figure out....is it possible to integrate this closer into vbcredits?

we want to make a custom button that can give points from one members account to anothers...

i thought it could be a button that charges say 10 pts to push, then a credits rule that if someone pushes that button on your post you get 10pts, but i dont see them in the list...

we have pro versions of both products installed btw...Unfortunately not, sorry :(


Fillip

mc0676
05-28-2016, 08:34 PM
I did an upgrade (my mistake, i do not remember the old version) and it stopped to work.
When i click thanks nothing happens.
I read all the attached txt about what do when upgrading but ... it continue to not work.

Any suggestion ?

DragonByte Tech
05-28-2016, 08:38 PM
Hmmm... The most common cause for this is outdated customised templates. Have you customised any of the templates from this mod? If so, could you try reverting those customisations?

Other than that, the only other thing I can think of is to make sure that all the files are uploaded in their correct folders - the best way to ensure this is to drag and drop the contents of the upload folder (not the upload folder itself) into your forum folder.

Let me know if this resolves it :)


Fillip

mc0676
05-28-2016, 09:00 PM
He Fillip,
u was right !
The responsable is this piece of code in the footer.
It's a "scroll to top" code.

---

<style type='text/css'>
#bttop{border:1px solid #000000;background:#696969;text-align:center;padding:5px;position:fixed;bottom:20p x;right:20px;cursor:pointer;display:none;color:#ff f;font-size:11px;font-weight:900;}
#bttop:hover{border:1px solid #ffa789;background:#ff6734;}
</style>
<div id='bttop'>TOP</div>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>$(function(){$(window).scroll(function(){if($(this ).scrollTop()!=0){$('#bttop').fadeIn();}else{$('#b ttop').fadeOut();}});$('#bttop').click(function(){ $('body,html').animate({scrollTop:0},800);});});</script>

---

DragonByte Tech
05-28-2016, 09:01 PM
You can most likely fix this by changing the jQuery version to 1.7.1 in that code (from 1.3.2) :)


Fillip

mc0676
05-28-2016, 09:03 PM
And it worked !

Thank u Fillip, really.

Good night now, here 01:00 A.M.

tomfuegue
06-08-2016, 06:07 AM
Hi, this is my forum: http://900grados.es/foro

I've purchased this hack in Pro version. I've installed and put on the buttons "like", "dislike" and "thanks", but when you press one of them, do nothing, and the bowser shows javascript://, what's wrong?.

mc0676
06-08-2016, 06:13 AM
Read last 5 posts :)

tomfuegue
06-08-2016, 08:23 AM
Read last 5 posts :)

"Top" button for me, too. :up:

Thank you very, vey much!!!.

mc0676
06-08-2016, 08:25 AM
Nice to hear !

ed762
06-21-2016, 11:44 PM
we installed the mod, but have problem doing this:

"4. Configure your Usergroup settings by clicking "Manage Buttons" under
"DBTech - Post Thanks" in your AdminCP navigation menu, then
editing each button and setting your usergroup permissions from there"

We simply do not have "DBTech - Post Thanks" in your AdminCP navigation menu"

Any pointers? We loaded the XML, and the general menu is available under " vb options"

DragonByte Tech
06-21-2016, 11:52 PM
Make sure you're set as super admin in config.php.

Fillip

DragonByte Tech
07-03-2016, 06:41 PM
Does the pro version have a feature similar to xenforo where you only have a summary on postbit, for example : 4 like 1 dislike 2 thanks ... list
and only when you click list you can have all the names

asking because otherwise this mod really is a big trouble for large boards where there can be thousands reactionsIt does indeed :)


Fillip

DragonByte Tech
07-09-2016, 05:38 PM
Thank, can we see a postbit screenshot somewhere, I would like to see exactly what the postbit looks like.https://i.imgur.com/LJsdLn1.png :)


Fillip

DragonByte Tech
07-13-2016, 01:12 PM
^Thanks but I see no "list" feature like in xenforoClicking the bubbles brings up a list of all users who clicked the button :)


Fillip

DragonByte Tech
08-08-2016, 10:06 PM
Advanced Post Thanks / Like v3.5.3

Fix: Fixed a compatibility issue with vBulletin 3.8.11 Alpha 1

Fillip

Makaze
08-12-2016, 02:12 PM
I am having an error where the button to like a post has mysteriously disappeared from my site. The product has been working for a long time but just recently the button in the bottom of the postbit does not show up. I can still access old Thanks from the Thanks tab on my profile, but the button no longer exists. When I inspect the elements, I find that it is not even in the DOM at all. No changes have been made to the templates involved.

This is my url: http://www.mafiauniverse.com/forums/

Thank you in advance,
Makaze

DragonByte Tech
08-13-2016, 06:52 PM
I am having an error where the button to like a post has mysteriously disappeared from my site. The product has been working for a long time but just recently the button in the bottom of the postbit does not show up. I can still access old Thanks from the Thanks tab on my profile, but the button no longer exists. When I inspect the elements, I find that it is not even in the DOM at all. No changes have been made to the templates involved.

This is my url: http://www.mafiauniverse.com/forums/

Thank you in advance,
MakazeHave you checked the per-button click permissions?


Fillip

Makaze
08-14-2016, 03:47 AM
Have you checked the per-button click permissions?


Fillip

Yes. None of the settings have been changed. The forum permissions are enabled for the forums I'm checking and the problem happens for all user groups. Existing thanks show, but the button to actually add a Thanks to a post doesn't.

DragonByte Tech
08-15-2016, 04:17 PM
Have you customised any of the APTL templates? If so, could you try reverting them?

Fillip

Makaze
08-15-2016, 11:24 PM
I have not customized any of them.

ChloeDione
08-23-2016, 03:59 AM
Okay so my set up has a similar problem Fillip...the only thing is, I only just installed it and even though the ACP / install is fine, I have zero buttons, anywhere at all. Not on the Post_Bit, no changes to templates - nothing. The thanks / likes stats are there but just no options to actually like a post. I think I have gone through all the settings correctly...any ideas?

DragonByte Tech
08-25-2016, 09:43 AM
Have you configured the per-button click permissions in the AdminCP? If you do not see the left side DBTech - Post Thanks menu, please make sure you are set to Super Administrator in config.php

If you do not see any buttons in this interface, please try clicking Repair Cache.

Fillip

Makaze
08-25-2016, 01:33 PM
Have you configured the per-button click permissions in the AdminCP? If you do not see the left side DBTech - Post Thanks menu, please make sure you are set to Super Administrator in config.php

If you do not see any buttons in this interface, please try clicking Repair Cache.


Fillip

I have done both of these and even upgraded the product, with no changes. Thanks button is enabled in all but one category and I can see thanks below posts, but I cannot thank new posts.

pecky
08-25-2016, 04:28 PM
Sorted, operator error

ChloeDione
08-25-2016, 05:40 PM
Have you configured the per-button click permissions in the AdminCP? If you do not see the left side DBTech - Post Thanks menu, please make sure you are set to Super Administrator in config.php

If you do not see any buttons in this interface, please try clicking Repair Cache.


Fillip

Yeah I am a Super Admin, it just took like until the following day for it to come through, for whatever reason...?

Might have been to do with how often the system updates / but then again I thought that it was only relevant to the forum leaders page, anyway?

A ton of the things were uploaded to incorrect folders but I amended that before the product was put in. The general options page had the DBtech option but not the separate admin (dedicated) panel on the left side of the ACP.

That showed the following day - is that to do with how long it takes for the ACP to update?

Either way, with a bunch of professional help (from a good friend from here), it is not sorted!

Thank you for your help. (And product of course).

xxx

ChloeDione
08-25-2016, 06:05 PM
Fresh install here on vBulletin 4.2.3 Patch Level 2, I get the threadbit stats and can turn them on and off and a summary box at the top of the thread for total thanks / likes, but no buttons anywhere to actually thank or like.

Pretty sure I've enabled everything where it needs to be.

Okay so this is exactly what I went through - how many side panels do you get in the ACP? I get one in the general options then settings (top option, then right down to the bottom on the next set of fall downs) but a second panel on the left side did not appear for me until a day after.

So maybe today that option has arrived for you? Glad to see that it is not just me lol.

Cla75
08-25-2016, 07:56 PM
i have vb 4.2.3 Patch Level 2 with DragonByte Tech: Advanced Post Thanks / Like Lite 3.5.3 BUT not work

I see the "Like-Button" and "thanks" next to each post but clicking nothing happens !

Mouse over the button read "javascript://"

What could be your problem ?

thanks for support !

mustafaa
08-28-2016, 09:27 AM
i have vb 4.2.3 Patch Level 2 with DragonByte Tech: Advanced Post Thanks / Like Lite 3.5.3 BUT not work

I see the "Like-Button" and "thanks" next to each post but clicking nothing happens !

Mouse over the button read "javascript://"

What could be your problem ?

thanks for support !

I have same problem too.

How to fix this problem?

Thanks for your support.


I get fix this problem like that:
The footer template of my theme is included that code for jQuery:
<script src='https //ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js ' type='text/javascript'></script>

i changed that line to this:
<script src='http://code.jquery.com/jquery-1.7.1.min.js' type='text/javascript'></script>

and than it works fine now.

Cla75
08-29-2016, 09:10 AM
mustafaa, thanks for reply

I tried to replace the string you reported ( I also had that old " 1.3.2 ) but I still do not see the work "thanks" and "Like" buttons :-(

Cla75
08-29-2016, 02:27 PM
I also tried to write this string

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js' type='text/javascript'></script>

You ' also need to change something on the server side and / or vbulletin ?

Cla75
08-30-2016, 10:30 AM
I add :
The MOD on Tapatalk works .
From the browser on vbulletin , it does not work . Click on the button and nothing happens .

Cla75
09-01-2016, 07:42 AM
I tried them all.
I do not know how to fix it.
:confused: :(

DragonByte Tech
09-05-2016, 02:56 PM
Have you checked your browser's console for any JS errors?

Fillip

Cla75
09-05-2016, 03:07 PM
where can I find them ?
with all browser not work
thanks for support

Cla75
09-05-2016, 03:15 PM
this ?

155346

155347

DragonByte Tech
09-12-2016, 09:02 PM
No, it's most likely going to be under Network.

Fillip

Noon
11-04-2016, 12:39 AM
Have you customised any of the APTL templates? If so, could you try reverting them?

Updating from vB4.2.2 to 4.2.3 Patch 2 has brought an error where you can no longer click the 'Thank, Like, Dislike' buttons for your Lite version.

Have you found this fix for this? Would love and appreciate!

DragonByte Tech
11-04-2016, 01:03 AM
Updating from vB4.2.2 to 4.2.3 Patch 2 has brought an error where you can no longer click the 'Thank, Like, Dislike' buttons for your Lite version.

Have you found this fix for this? Would love and appreciate!This is not an issue I or anyone else that I know of is able to replicate, so it's very likely the issue is not in vB 4.2.3. Have you customised any of the APTL templates?


Fillip

Noon
11-04-2016, 01:22 AM
This is not an issue I or anyone else that I know of is able to replicate, so it's very likely the issue is not in vB 4.2.3. Have you customised any of the APTL templates?


Fillip

I'm using a Primus theme and before I went from vb 4.2.2 to 4.2.3 it was working fine. However, when I upgraded instead of re-installing the buttons ceased to work. I'm just reading the code to see where I can possibly edit something but I've yet to make any changes.

forum.mapleharbor.net

DragonByte Tech
11-04-2016, 07:33 PM
I'm using a Primus theme and before I went from vb 4.2.2 to 4.2.3 it was working fine. However, when I upgraded instead of re-installing the buttons ceased to work. I'm just reading the code to see where I can possibly edit something but I've yet to make any changes.

forum.mapleharbor.netIf any of the APTL templates have been customised, the template name will show in red or yellow in the Style Manager in vBulletin.


Fillip

mustafaa
11-18-2016, 04:02 PM
this ?

155346

155347

Hi Cla75,

Maybe you can try this:

<script src='http://code.jquery.com/jquery-1.12.4.min.js' type='text/javascript'></script>

rory2000
12-18-2016, 07:52 PM
HI

I have just installed 4.2.5 Beta 1 and this mod no longer works... Is there a known fix ?

I am currently running version 3.3.0 ... has this issue been fixed in the latest version ?

Thanks in advance..

DragonByte Tech
12-19-2016, 09:10 PM
Advanced Post Thanks / Like v3.6.0:
Feature: vBSocial 10 integration - sends a vBSocial notification when someone clicks a button on your content

Fillip

DragonByte Tech
12-19-2016, 09:10 PM
HI

I have just installed 4.2.5 Beta 1 and this mod no longer works... Is there a known fix ?

I am currently running version 3.3.0 ... has this issue been fixed in the latest version ?

Thanks in advance..This mod works fine on Beta 1, there's no issues with it that anyone has reported :)


Fillip

JmTech
12-29-2016, 07:36 AM
I tried them all.
I do not know how to fix it.
:confused: :(

hi to troubleshoot this issue try to browse with your default style if works.

if its working most probably the problem is one of your template..

try to check your footer template if there is any modification just revert it.

Cla75
12-29-2016, 08:20 AM
Thanks for the kindle reply.
I tried to restore the original footer but it still does not work. Clicking the button with nothing happens.

I view writing javascript: // as screenshots
155609

JmTech
12-29-2016, 09:17 PM
Thanks for the kindle reply.
I tried to restore the original footer but it still does not work. Clicking the button with nothing happens.

I view writing javascript: // as screenshots
155609

hi please check if all files uploaded correctly in your server

open a thread in your forum click thanks button even its not functioning.

now right click then inspect--> console..

if there is missing files in your server you can see the error colored in red

something like this thanks.php 404 not found

Cla75
12-30-2016, 08:10 AM
Thanks for the kindle reply.

please check if all files uploaded correctly in your server
I reloaded many times all files by checking that the copy is 100% correct

open a thread in your forum click thanks button even its not functioning.
click and not work

now right click then inspect--> console..
ok
error name
http://www.forumviaggiatori.forum.php/
correct name
http://www.forumviaggiatori.com/forum.php/

see screenshot
155618

How can I fix the problem ?
thanks for your kind help

DragonByte Tech
12-30-2016, 08:12 AM
Thanks for the kindle reply.


I reloaded many times all files by checking that the copy is 100% correct


click and not work


ok
error name
http://www.forumviaggiatori.forum.php/
correct name
http://www.forumviaggiatori.com/forum.php/

see screenshot
155618

How can I fix the problem ?
thanks for your kind helpYour Forum URL setting is wrong in your vBulletin Options, most likely.


Fillip

Cla75
12-30-2016, 08:15 AM
forum URL is http://www.forumviaggiatori.com

screenshot
155619

which is the error?

DragonByte Tech
12-30-2016, 08:19 AM
forum URL is http://www.forumviaggiatori.com

screenshot
155619

which is the error?

The Forum Component URL setting maybe?


Fillip

Cla75
12-30-2016, 08:28 AM
where I check this setting?
I apologize

Cla75
12-30-2016, 08:33 AM
I get it
it's empty

screenshot
155620

Cla75
12-30-2016, 09:29 AM
I solved the problem of URL (caused by a mod)
but it did not solve the problem on thanks / like

now right click then inspect--> console..
Now, no written in red in the console it appears when I press the thanks button or when I load page thread in your forum

DragonByte Tech
01-09-2017, 08:37 PM
Advanced Post Thanks / Like v3.6.1:
Change: The vBSocial notification now includes a link to the content that received a button click

Fillip

MarkFL
01-12-2017, 04:41 PM
Hello Fillip,

Last night, we upgraded MHB (Math Help Boards) to vB 4.2.5 Beta 1 with PHP 7.0.14. We are running DragonByte Tech: Advanced Post Thanks / Like (Pro) Version 3.3.0pl2, and I am now getting deprecation warnings, and a fatal error when I try to edit buttons:

Call to undefined method vB_DataManager::vB_DataManager() on line 89 in /home/.../public_html/dbtech/thanks/includes/class_dm_button.php
#0 /home/.../public_html/dbtech/thanks/includes/class_core.php(264): Thanks_DataManager_Button->Thanks_DataManager_Button(Object(vB_Registry), 2)
#1 /home/.../public_html/dbtech/thanks/actions/admin/button.php(348): THANKS::initDataManager('Button', Object(vB_Registry), 2)
#2 /home/aspiri9/public_html/admincp/thanks.php(82): include_once('/home/aspiri9/p...')
#3 {main}

I get the same thing when I try running this version of the product on my local dev site, also running vB 4.2.5 Beta 1 with PHP 7.0.13.

At MHB, clicking the "Thanks" button just results in the button disappearing, and no thanks being added to the posts.

However, when I install the Lite version 3.6.1 on my local dev site, everything works as it should.

So, my question is, do you think if we upgrade to the latest Pro version at MHB, this will resolve the warnings, errors, and the disappearing act of the "Thanks" buttons?

Thank you for your time and consideration,

Mark.

DragonByte Tech
01-12-2017, 04:43 PM
So, my question is, do you think if we upgrade to the latest Pro version at MHB, this will resolve the warnings, errors, and the disappearing act of the "Thanks" buttons?Yes, the latest version of the mod is compatible with PHP 7.0 and 7.1 :)


Fillip

MarkFL
01-12-2017, 04:50 PM
Yes, the latest version of the mod is compatible with PHP 7.0 and 7.1 :)


Fillip

That's great news! We will be upgrading then, and thank you for your ultra-quick response/support! :up:

I just wanted to let you know also, that this product has been very useful to us and appreciated by our users over the years. On a site like ours, where math help is provided, not only is it useful for the community to show appreciation to good helpful/informative posts, we also use it as a way for those asking help to gauge how well received a helper's posts have been by the addition of a thank/post ratio datum displayed in our postbits and profiles. :)

DragonByte Tech
01-12-2017, 04:51 PM
Thanks for your kind words, much appreciated :D


Fillip

MarkFL
01-13-2017, 12:48 AM
I wanted to follow up and report that after upgrading to 3.6.1 (Pro), everything is working smoothly again. :up:

SoloistSL2H
02-02-2017, 02:26 PM
Is it possible to add an option? Thanks, Like, Dislike, then a 4th option?

MarkFL
02-02-2017, 02:31 PM
Is it possible to add an option? Thanks, Like, Dislike, then a 4th option?

That appears to be a "Pro" feature. :)

https://vborg.vbsupport.ru/attachment.php?attachmentid=155773&stc=1&d=1486053377

lacidious
02-05-2017, 02:53 PM
Spent like 5 hours trying to get this to work.

The buttons don't show up in my custom theme.

Set the permissions. Deleted buttons and made new ones. Repaired cache. Checked forum manager permissions.

No like, dislike, or thanks button anywhere to be found.

Running version 4.2.3 patch level 2.

Do I need to manually put some code somewhere?

DragonByte Tech
02-05-2017, 02:55 PM
Spent like 5 hours trying to get this to work.

The buttons don't show up in my custom theme.

Set the permissions. Deleted buttons and made new ones. Repaired cache. Checked forum manager permissions.

No like, dislike, or thanks button anywhere to be found.

Running version 4.2.3 patch level 2.If you're deleting buttons you're running the Pro version, could you please re-post this issue @ our site?

We can't provide support for the Pro version here @ vBulletin.org, sorry :(


Fillip

lacidious
02-05-2017, 03:04 PM
I am currently running the lite version.

I have tried multiple versions in my efforts to get it to work when I couldn't get the lite version to work, but I have the most current lite version installed now.

DragonByte Tech
02-05-2017, 03:05 PM
I am currently running the lite version.That's strange, the Lite version does not have the option to delete buttons.

If you PM me with an FTP and AdminCP account I can look into this and see if I can fix the bug in your custom skin :)


Fillip

DragonByte Tech
02-05-2017, 03:39 PM
I am currently running the lite version.

I have tried multiple versions in my efforts to get it to work when I couldn't get the lite version to work, but I have the most current lite version installed now.This was actually not a bug in your skin, but rather a bug in the "Add Ignore User To Postbit Dropdown (2)" plugin. I have resolved it for you :)


Fillip

lacidious
02-05-2017, 03:58 PM
Arrrrghh. You are amazing, thank you.

I think I will have to buy pro next week when I get paid just for your kindness alone.

SoloistSL2H
02-11-2017, 03:44 PM
That appears to be a "Pro" feature. :)

https://vborg.vbsupport.ru/attachment.php?attachmentid=155773&stc=1&d=1486053377

Cool deal then, thanks. :)

mbgelsin
02-16-2017, 01:29 AM
I recently installed [DBTech] Advanced Post Thanks Like v3.6.1 [Lite] but did not like the way it forced the separation between post and like without going 'pro.'

Upon removal I have been unable to reinstate rep in its natural form and cannot for the life of me get it to display in the postbit. I just have a little sheriff badge at the bottom.

How can I regain my +- sign and display rep again in the postbit/postbit legacy?

I searched for literally hours and could not find a 'default' postbit. IF that's even the problem. I have no other plugins installed and the issue occurs on both the custom theme and the original theme.

I'm on version 4.2.3

Thank you in advance for any help you can offer.

DragonByte Tech
02-16-2017, 08:41 AM
Upon removal I have been unable to reinstate rep in its natural form and cannot for the life of me get it to display in the postbit.This modification does not alter the way rep is displayed in any way, shape or form. Whatever issue you're experiencing, it's very doubtful it's caused by this mod.

Sorry I couldn't be of more help :(


Fillip

DragonByte Tech
02-16-2017, 08:50 AM
Advanced Post Thanks / Like v3.6.2 / v3.6.3:
Feature: Implemented the APTL buttons on the "Recent Entries" list
Fix: The APTL buttons would not work on certain Blog related pages

Fillip

djbaxter
02-17-2017, 01:24 AM
Version 3.6.3 is not working for me.

I was running 3.5.1 on two vBulletin 4.2.3 PL2 forums.

I upgraded today to 3.63. The new version wasn't doing anything. If I clicked on either Like or Thanks, the option to click again would disappear with no indication that I had liked or thanked the post. If I refreshed the page, the options returned, but the same thing happened.

Cleared the browser cache (Firefox) in case I needed to reload some script. Same thing happened.

I returned to version 3.5.1 and the feature is working again as it used to.

DragonByte Tech
02-17-2017, 07:55 AM
Version 3.6.3 is not working for me.

I was running 3.5.1 on two vBulletin 4.2.3 PL2 forums.

I upgraded today to 3.63. The new version wasn't doing anything. If I clicked on either Like or Thanks, the option to click again would disappear with no indication that I had liked or thanked the post. If I refreshed the page, the options returned, but the same thing happened.

Cleared the browser cache (Firefox) in case I needed to reload some script. Same thing happened.

I returned to version 3.5.1 and the feature is working again as it used to.This has been reported a couple times, but it's not an issue I can replicate.

Can you PM me with an FTP and AdminCP account so I can look into this?


Fillip

djbaxter
02-17-2017, 08:47 AM
This has been reported a couple times, but it's not an issue I can replicate.

Can you PM me with an FTP and AdminCP account so I can look into this?


Fillip

As I said, I have reverted to an earlier version. These are production boards. SO I don't see how the log-ins would help.

DragonByte Tech
02-17-2017, 08:48 AM
As I said, I have reverted to an earlier version. These are production boards. SO I don't see how the log-ins would help.If I can't see the issue in action, how am I meant to fix it?


Fillip

EdQ
02-25-2017, 10:35 PM
Just installed this to replace the 'like' system in VBSEO.

But when clicking on 'like this post', it doesn't take. And all the icons in the post go to an 'X'

incisor
02-26-2017, 05:15 AM
This has been reported a couple times, but it's not an issue I can replicate.


happening to me as well...

would really like to get this going but i cant get it to happen.

happy to help you get around it..

PS bought it and downloaded 3.5.1 and it works...

DragonByte Tech
02-26-2017, 08:45 AM
I have applied a hotfix that resolves this issue :)


Fillip

EdQ
02-26-2017, 01:09 PM
No change for me.

Also the importer brought in incorrect numbers from VBSEO. Some members have the same count.

Likes (Given):1467

Likes (Received):1156

DragonByte Tech
02-26-2017, 01:10 PM
No change for me.Please make sure you have uploaded all the files, re-imported the templates, and reverted all customised APTL templates.


Fillip

EdQ
02-26-2017, 01:36 PM
Please make sure you have uploaded all the files, re-imported the templates, and reverted all customised APTL templates.


Fillip

I uploaded them again. Looks like that worked.
Except that when I do 'like' a post, the icons images change to an 'X'

I tried to run maintenance to fix the counts. But they never finish. No error just stops.

Going to reinstall to clear the numbers and try the importer again.

DragonByte Tech
02-26-2017, 01:36 PM
Are you using the Lite or Pro version?

Fillip

EdQ
02-26-2017, 01:41 PM
Are you using the Lite or Pro version?


Fillip

Trying out the lite version

vimarc
03-01-2017, 03:07 AM
In threads profile section above rep power showing thanks/like with arrow image how to get rid of that

Instead of image with arrow show total thanks/like

e.g. thanks/likes=200

MarkFL
03-01-2017, 03:21 AM
In threads profile section above rep power showing thanks/like with arrow image how to get rid of that

Instead of image with arrow show total thanks/like

e.g. thanks/likes=200

In the product's general settings, set "Manual Postbit Deployment" to "Yes" and then in a plugin hooked at "postbit_display_complete" use the condition:

$post['dbtech_thanks_settings'] == 0

to make sure the user's settings are honored with respect to whether they wish for the data to be displayed, and use the variables:

$post['likes_received']
$post['likes_given']

wrapped in whatever HTML you desire, added to whichever template hook you want. :)

Gn_Snake
03-01-2017, 08:42 PM
I have installed , and configured, but not show the button thanks.. Any button dont show

MrD
03-02-2017, 06:21 AM
Hi,
in the 3.6.3 Pro, the given Like/Thanks are not displayed in the Postbit
Back on 3.6.2 they are displayed.

red-dna
03-10-2017, 05:29 PM
Installed but i don't see anything in the postbit
Version 4.0.8
I see the links in the Community menu but they give the error:

This is a 500 error
Report it to Admin
Server Name: www.red-dna.com
Ref URL: http://www.red-dna.com/forum/showthread.php/6815&viewfull=1
Vis. IP: 46.198......
Vis. Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
Req URL: /forum/thanks.php?do=hottest
Red. Status Code: 500

twistedsoul
03-27-2017, 05:35 AM
Hey Fillip, I just got this installed after removing another thanks mod. after getting everything uploaded and xml imported and setting the permissions this is what I have on the manage buttons menu. You can see on threads that it is installed only because of the footer, but there is nothing in the posts as far as any buttons. not sure what I'm doing wrong with this. maybe from the file edit in step 4 of the read-me?https://vborg.vbsupport.ru/external/2017/03/11.png

MarkFL
03-27-2017, 05:43 AM
Run the "Repair Cache" function, then you should be ready to begin setting up your buttons. :)

twistedsoul
03-27-2017, 05:53 AM
I cleared cache thinking it would help. not sure where to find repair cache...

MarkFL
03-27-2017, 05:57 AM
I cleared cache thinking it would help. not sure where to find repair cache...

It's part of DBTech's product, you can find it on the menu, right above "Settings"...(check your screenshot). :)

twistedsoul
03-27-2017, 05:58 AM
oh geez, its always something I overlook lol thank you mark!

MarkFL
03-27-2017, 05:59 AM
oh geez, its always something I overlook lol thank you mark!

I know that feeling well...:D

twistedsoul
03-27-2017, 02:49 PM
getting error anytime I go into a thread with to reply. basically if I try to change prefixes or reply at all. just tested a quick reply and same error. also with this I am unable to delete posts or close threads... it is also not updating my forum home page with this just started happening today, and my last changes this morning were removing ajax post thanks and installing advanced post thanks. so I'm not sure where the issue lies if its something from the old mod or what. also it isn't updating on the top 10 stats anymore either as last posts by... I disabled advanced post thanks and still have same issue

MarkFL
03-27-2017, 02:55 PM
getting error anytime I go into a thread with to reply. basically if I try to change prefixes or reply at all. just tested a quick reply and same error. also with this I am unable to delete posts or close threads... it is also not updating my forum home page with this just started happening today, and my last changes this morning were removing ajax post thanks and installing advanced post thanks. so I'm not sure where the issue lies if its something from the old mod or what. also it isn't updating on the top 10 stats anymore either as last posts by...

I have personally installed this product on several sites, and never had any issues like that...but then none of those sites had previously run any other post thanks products either.

twistedsoul
03-27-2017, 02:59 PM
yea I mean the only other thing I did yesterday was make a few new UG banners. the only changes actually made were removing that other mod and installing this one

MarkFL
03-27-2017, 03:04 PM
yea I mean the only other thing I did yesterday was make a few new UG banners. the only changes actually made were removing that other mod and installing this one

Did you actually uninstall the other mod, or did you simply disable it via the product's settings?

twistedsoul
03-27-2017, 03:06 PM
uninstalled in product manager, I didn't physically go into ftp and delete the files. doing that now though.
completely deleted every file from old mod from the ftp. still have the issue...

Marcin147
03-31-2017, 03:00 PM
Thank you for the mod.

I got some questions.

First one is if is it possible to get rid of brackets where it says RECEIVED and GIVEN because I am using stats for received ones only so it doesn't make any sense.

Second, any chance to increase number of users with the highest "likes" from TOP 5 to TOP 10?

Thanks for your help.

djbaxter
04-13-2017, 04:42 PM
I tried again to upgrade to v3.6.3 of this add-on.

At first, everything seemed fine with that latest hotfix.

However, users could not access the vBulletin blogs.

This is the error:


PHP Warning: require(..../dbtech/thanks_pro/hooks/blog_list_entries_complete.php): failed to open stream: No such file or directory in ..../blog.php(2113) : eval()'d code on line 1

Fatal error: require(): Failed opening required '/xxxx/xxxxxxxx/xxxxxxxxxxx/forum/dbtech/thanks_pro/hooks/blog_list_entries_complete.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /xxxx/xxxxxxxx/xxxxxxxxxxx/forum/blog.php(2113) : eval()'d code on line 1



I reverted to my previous version, 3.5.1, and now everything works again.

DragonByte Tech
04-13-2017, 04:43 PM
Can you please clarify what you mean when you say users cannot access the blogs?

Fillip

djbaxter
04-13-2017, 05:02 PM
See above. I was editing my post to provide the error messages.

DragonByte Tech
04-13-2017, 05:03 PM
I believe this has already been hotfixed @ our site. Can you please try downloading the latest version from our site instead of here @ vb.org and let me know if that works?

Fillip

djbaxter
04-13-2017, 05:18 PM
I'll try to do that when I get a chance and report back. I don't have time to do that just now.

Thanks.

emath
04-14-2017, 11:41 AM
@DragonByte Tech

A year later, still VBSEO likes import doesn't work.

see posts :

https://vborg.vbsupport.ru/showthread.php?p=2546784#post2546784
https://vborg.vbsupport.ru/showthread.php?p=2547049#post2547049

tried with latest now - same issue.

DragonByte Tech
04-20-2017, 03:04 PM
@DragonByte Tech

A year later, still VBSEO likes import doesn't work.The vBSEO Likes importer has received multiple updates since 2015, any old issues are no longer valid.

If you are having problems with the importer, please try clicking Repair Cache under DBTech - Thanks before trying the import.


Fillip

emath
04-24-2017, 06:16 AM
The vBSEO Likes importer has received multiple updates since 2015, any old issues are no longer valid.

If you are having problems with the importer, please try clicking Repair Cache under DBTech - Thanks before trying the import.


Fillip

tnx

CC16
04-28-2017, 11:56 AM
My host company insalled the plugin for us and enabled it, but the thanks/like icons are not displaying anywhere for any users, whether they use a custm style or the default one. I asked them why this was happening and they've essentially said I just have to test it and figure it out. But I'm at a loss. I'm on vb 4.2.4, I'd appreciate any pointers anyone could offer me!

DragonByte Tech
04-28-2017, 11:57 AM
My host company insalled the plugin for us and enabled it, but the thanks/like icons are not displaying anywhere for any users, whether they use a custm style or the default one. I asked them why this was happening and they've essentially said I just have to test it and figure it out. But I'm at a loss. I'm on vb 4.2.4, I'd appreciate any pointers anyone could offer me!I would re-upload the contents of the upload folder as your first step :)


Fillip

Nassou
05-18-2017, 08:21 PM
<font face="Verdana">A bit of an issue here with the like/thanks notification to the right tab in the user profile to see who liked or thanked...

The default format is "userid.html?#thanks" just doesn't work it keeps on redirecting to the main tab in the profile "My Activity".

but when i tried to put it manually with this format

"userid.html?tab=thanks#thanks"

it did work !

Any idea how to make it automatically ?</font>

Makaze
05-30-2017, 11:58 AM
Hello,

I am still experiencing the same issue as before. I have installed the latest version as of this post with a clean uninstall and re-install. Reminder, the issue is:

The button to thank a post next to the "edit" and "report post" buttons does not appear. If I inspect the elements, it's not that they are hidden. The buttons do not exist. No HTML for them in the DOM.

This happens in every forum, even ones that do not have any buttons disabled. I have even made every user group including guests and banned users able to click them. Still nothing.

The total number of thanks shows up above the post list and a collapsible list of a user's thanks shows up beside each post. The button is the only thing not working. Here is an example: http://www.maf_iauniverse.com/forums/threads/8826

(Remove the underscore from the url. It seems the word +++++ is filtered by the swear filter on this site.)

HTML for a post:
<li class="postbitlegacy postbitim postcontainer postby-1580 old" id="post_1190109">
<!-- see bottom of postbit.css for .userinfo .popupmenu styles -->

<div class="posthead">
<span class="postdate old">

<span class="date">Yesterday,&nbsp;<span class="time">12:57 AM</span></span>

</span>
<span class="nodecontrols"><a class="collapse_quotes iso" href="javascript:void(0)">Toggle Quotes</a>


<a class="threadmarks-button iso" href="javascript:void(0);" data-threadid="8832" data-postid="1190109" data-postnumber="1" data-action="set">Set Threadmark</a>

<a href="search.php?do=finduser&amp;userid=1580&amp;searchthreadid= 8832&amp;contenttype=vBForum_Post&amp;showposts=1&amp;order=as cending" title="View all posts by IAAFR in improve the description of &quot;Cops get n0 peeks.&quot;" class="iso">ISO</a>
<a name="post1190109" href="threads/8832-improve-the-description-of-Cops-get-n0-peeks?p=1190109&amp;viewfull=1#post1190109" class="iepostcounter">#1</a><a id="postcount1190109" name="1"></a>



<label for="post_imod_checkbox_1190109"><input class="postimod" type="checkbox" id="post_imod_checkbox_1190109" name="plist[1190109]" value="0"></label>

</span>
</div>
<div class="postdetails">
<div class="userinfo">
<div class="username_container">
<div class="popupmenu memberaction" id="yui-gen46">
<a class="username invisible popupctrl" href="members/1580-IAAFR" title="IAAFR is invisible" id="yui-gen48"><strong>IAAFR</strong></a>
<ul class="popupbody memberaction_body" id="yui-gen47">
<li class="left">
<a href="members/1580-IAAFR" class="siteicon_profile">
View Profile
</a>
</li>

<li class="right">
<a href="search.php?do=finduser&amp;userid=1580&amp;contenttype=vBF orum_Post&amp;showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>


<li class="left">
<a href="private.php?do=newpm&amp;u=1580" class="siteicon_message" rel="nofollow">
Private Message
</a>
</li>







<li class="right">
<a href="http://www.+++++universe.com/forums/list/author/1580-IAAFR" class="siteicon_article" rel="nofollow">
View Articles
</a>
</li>



<li class="left">
<a href="profile.php?do=addlist&amp;userlist=buddy&amp;u=1580" class="siteicon_add">
Add as Contact
</a>
</li>




</ul>
</div>
<img class="inlineimg onlinestatus" src="images/metro/blue/statusicon/user-invisible.png" alt="IAAFR is invisible" border="0" title="IAAFR is invisible">
</div>
<span class="usertitle">
Wants It More
</span>



<span class="postbit_reputation" id="repdisplay_1190109_1580" title="IAAFR is an unknown quantity at this point">

<img class="repimg" src="images/metro/blue/reputation/reputation_balance.png" alt="">

</span>


<a class="postuseravatar" href="members/1580-IAAFR" title="IAAFR is invisible">
<img src="image.php?u=1580&amp;dateline=1494859993" alt="IAAFR's Avatar" title="IAAFR's Avatar">
</a>


<hr>
<dl class="userinfo_extra">
<dt>Join Date</dt> <dd>Oct 2016</dd>


<dt>Posts</dt> <dd>8,374</dd>

<dd class="collapse" style="font-weight:bold; clear:both;">Post Thanks / Like <a class="collapse" id="collapse_c_thanks_post1190109" href="threads/8832-improve-the-description-of-Cops-get-n0-peeks?p=1190109#top" style="position:relative; top:0px; right:0px; float:none;"><img src="images/metro/blue/buttons/collapse_40b.png" alt=""></a></dd>
<dd>
<dl id="c_thanks_post1190109" style="display:none;">

<dt>Thanks (Given)</dt>
<dd>0</dd> <dt>Thanks (Received)</dt>
<dd>0</dd>

</dl>
</dd>
<dt>Community</dt><dd>NAdota</dd><dt>Gender</dt><dd class="genderContainer"><img src="images/misc/male.png" title="Male"></dd>
</dl>

<!-- show awards -->

<!-- /show awards -->
<div class="imlinks">
<a href="database/players/player/?playername=IAAFR">Database Profile</a>
</div>
<!-- icons annoying
<div class="imlinks">

</div>
//-->

</div>
<div class="postbody">

<div class="postrow has_after_content">



<h2 class="title icon">
improve the description of "Cops get n0 peeks."
</h2>








<div class="content">
<div id="post_message_1190109">
<blockquote class="postcontent restore ">
it's a rare issue, but i think it's an easy enough fix for the few times it'll get passed over/misinterpreted to fix<br>
<br>
i see some players new to MU not understanding the concept of n0 peeks<br>
<br>
therefore, i suggest amending the entry in the modbot OPs from<br>
<br>
"Cops get n0 peeks."<br>
<br>
to<br>
<br>
"Cops receive Night 0 results on a randomized ["Town player" if that was selected in modbot / "player" if true random was selected]"<br>
<br>
it may only help 2-3 players a year, but i feel the fix is easy enough that it's worth doing?
</blockquote>
</div>


</div>
</div>

<div class="after_content">

<!-- edit note -->
<blockquote class="postcontent lastedited">

<a href="posthistory.php?p=1190109">Last edited by Makaze</a>; Today at <span class="time">09:36 AM</span>.


</blockquote>
<!-- / edit note -->







</div>

<div class="cleardiv"></div>
</div>
</div>
<div class="postfoot">
<!-- <div class="postfoot_container"> -->
<div class="textcontrols floatcontainer">
<span class="postcontrols">
<img style="display:none" id="progress_1190109" src="images/metro/blue/misc/progress.gif" alt="">


<a class="editpost" href="editpost.php?p=1190109&amp;do=editpost" name="vB::QuickEdit::1190109" title="Edit / Delete"><img src="clear.gif" id="editimg_1190109" alt="Edit / Delete" title="Edit / Delete"> Edit Post</a>
<span class="seperator">&nbsp;</span>



<a id="qr_1190109" class="quickreply" href="newreply.php?do=newreply&amp;p=1190109&amp;noquote=1" rel="nofollow" title="Quick reply to this message"><img id="replyimg_1190109" src="clear.gif" alt="Quick reply to this message" title="Quick reply to this message"> Reply</a>
<span class="seperator">&nbsp;</span>


<a id="qrwq_1190109" class="newreply" href="newreply.php?do=newreply&amp;p=1190109" rel="nofollow" title="Reply With Quote"><img id="quoteimg_1190109" src="clear.gif" alt="Reply With Quote" title="Reply With Quote"> Reply With Quote</a>
<span class="seperator">&nbsp;</span>


<a class="multiquote" href="newreply.php?do=newreply&amp;p=1190109" rel="nofollow" onclick="return false;" id="mq_1190109" title="Multi-Quote This Message"><img id="mq_image_1190109" src="images/metro/blue/buttons/multiquote_40b.png" alt="Multi-Quote This Message" title="Multi-Quote This Message">&nbsp;</a><a class="rvote" rel="nofollow" title="Reply With Vote" style="background-image: url(http://www.+++++universe.com/forums/images/editor/vote.png); background-position-x: center; background-repeat: no-repeat; border: 0px solid #e4e4e4; background-color: transparent; cursor: pointer;"><img src="images/metro/blue/buttons/multiquote_40b.png" alt="Reply With Vote" title="Reply With Vote">&nbsp;</a>

</span>
<span class="postlinking">


<a href="http://www.+++++universe.com/forums/content/1/addcontent?contenttypeid=24&amp;postid=1190109&amp;parenti d=1" class="promotecms">Promote to Article</a>
<span class="seperator">&nbsp;</span>



<link type="text/css" href="css.php?styleid=3&amp;langid=1&amp;d=1496150615&amp;td=ltr&amp;she et=dbtech_vbsuper_pm_postbit.css" rel="stylesheet">


<a class="vbsuperpmpostbit" title="Send A Private Message To IAAFR" rel="nofollow" href="private.php?do=newpm&amp;u=1580">
<img src="clear.gif">
Send PM
</a>
<span class="seperator">
&nbsp;
</spa



&nbsp;<a class="infraction" href="infraction.php?do=report&amp;p=1190109" rel="nofollow" title="Add Infraction for IAAFR"><!-- <img src="images/metro/blue/buttons/add-infraction_sm.png" alt="Add Infraction for IAAFR" /> --> &nbsp;</a> &nbsp;


&nbsp;<a class="report" href="report.php?p=1190109" rel="nofollow" title="Report Post"><!-- <img src="images/metro/blue/buttons/report-40b.png" alt="Report Post" /> -->&nbsp;</a> &nbsp;







</span>
<!-- </div> -->
</div>
</div>
<hr>
</li>

Makaze
05-30-2017, 12:11 PM
Disregard that post. I think I found the issue.

Edit: Confirmed. The button was being affected by a JavaScript code.

roiarthur
06-11-2017, 03:16 PM
I try to fix the bug but i could not.

I am under Vbulletin 4.2.5 and PHP 7.0

For the first topic the system Like is ok, all the buttons works

But if someone answer a topic, under the answer the system Like double the display and two lines of sections of buttons appears instead of one.

If someone answer a third answer, the system Like triple the display and three lines of sections of buttons appears instead of one.

And it keeps growing

I cannot use that add-ons:down:

wotws
06-29-2017, 08:32 AM
I need a payment method except paypal.

RichieBoy67
07-02-2017, 03:02 AM
I try to fix the bug but i could not.

I am under Vbulletin 4.2.5 and PHP 7.0

For the first topic the system Like is ok, all the buttons works

But if someone answer a topic, under the answer the system Like double the display and two lines of sections of buttons appears instead of one.

If someone answer a third answer, the system Like triple the display and three lines of sections of buttons appears instead of one.

And it keeps growing

I cannot use that add-ons:down:

Did you try it with a lower version of php? 5.6 perhaps?

IggyP
07-10-2017, 10:54 PM
hmm....i do not see the "thanks importer" anywhere.....whats worse im pretty sure ive done this before....

i know all the usual cache repairing, superadmin in config file or such...logout, logback in....

its just not in the list of options

IggyP
07-10-2017, 11:25 PM
separated read me file...........

IggyP
07-10-2017, 11:28 PM
ok ive ran the script by url but now its invalid action

failed on php 7.1 and 5.6 same invalid action.....

current product version blah blah ideas?

can it pull the data from vb3 to vb4? i am trying to import from datatable has sourced from abes on vb3 but to a vb4 product/panel

DragonByte Tech
07-11-2017, 07:04 AM
It can only import from another thanks mod on the same database.

Fillip

toopye
07-11-2017, 06:37 PM
thank you ..
شكراً لك ي صديقي :D

BGObsession
07-13-2017, 06:12 PM
I love this mod, but as I mentioned in a support ticket on DBTech site, if you want to sub-in your own custom icons (and honestly, most site owners are going to want to do that) - you seem to have to use the exact same sized images. I bumped the icon size up to 24x24 and the only place they appear in full is in the post section in forums. Everywhere else the mod allows the use of the post thanks/likes icons, they are severely cropped. DB - I know you view this as a skin/template issue, but is it not possible to fix this in an update so that icon images are re-sized to fit automatically? That would seem like an improvement that future users (and purchasers of the pro version) would like? I'm a little frustrated because I have not been able to find someone who seems to be able to fix it. My choice is to go back to small icons or disable the mod in the site areas where the images are being cropped :(

If anyone here has mad template skills and think they can fix it, open to suggestions...

mdawg
07-14-2017, 03:25 PM
Not sure if this is the dbtech mod causing this, but upon trying to login to my admin on my vb4 today I got this error

Error: Using $this when not in object context in ..../dbtech/status/hooks/init_startup.php on line 17

the vb4 forum itself seems okay but I cannot get into admin.

---

Update, I
define('DISABLE_HOOKS', true);
and toggled a couple things on and off.

The issue is with your DragonByte Tech: User Status & Moods, v 1.3.6 when I turned this off error did not repeat and could access admin again.

IggyP
07-14-2017, 04:40 PM
i just had a same issue with forum tabs product, which they were able to hotfix quickly :)

i must guess you are running php7.1 is it?

roiarthur
07-16-2017, 10:50 PM
Did you try it with a lower version of php? 5.6 perhaps?

It was working under PHP 5.6 but it is not working under PHP 7.0 and i cannot downgrade only for that

IggyP
07-17-2017, 11:10 AM
actually tho this one was working for us with php 7.1.7
just tested it..fwiw

Steve English
07-27-2017, 12:36 PM
4.2.5
php 5.6.31

Error

Fatal error: Call to undefined method vB_DataManager::vB_DataManager() in /home/myforum/public_html/dev/dbtech/thanks/includes/class_dm_button.php on line 89


Fine in 4.2.4

Any offers?

Regards


Steve

DragonByte Tech
07-27-2017, 12:38 PM
4.2.5
php 5.6.31

Error

Fatal error: Call to undefined method vB_DataManager::vB_DataManager() in /home/myforum/public_html/dev/dbtech/thanks/includes/class_dm_button.php on line 89


Any offers?

Regards


SteveAccording to the postbit you've not downloaded this mod before, so I would suggest you look at the site you downloaded it from for a newer version.


Fillip

Steve English
07-27-2017, 12:54 PM
4.2.5
php 5.6.31

Error

Fatal error: Call to undefined method vB_DataManager::vB_DataManager() in /home/myforum/public_html/dev/dbtech/thanks/includes/class_dm_button.php on line 89


Fine in 4.2.4

Any offers?

Regards


Steve

This has been fixed by uploading version v3.6.3

Regards


Steve

DragonByte Tech
08-04-2017, 09:42 AM
A bit of an issue here with the like/thanks notification to the right tab in the user profile to see who liked or thanked...

The default format is "userid.html?#thanks" just doesn't work it keeps on redirecting to the main tab in the profile "My Activity".

but when i tried to put it manually with this format

"userid.html?tab=thanks#thanks"

it did work !

Any idea how to make it automatically ?This is a bug with vBSEO, unfortunately it is not something that we can fix on our end.


Fillip

risecompany
08-04-2017, 04:57 PM
Hi, After i had uploaded it, I can't see any buttons to like the posts!

Nassou
08-13-2017, 10:54 AM
Hi,

I'm still experiencing the same issue regarding the like/thanks notification in the user profile.

The default format is "userid.html?#thanks" just doesn't work it keeps on redirecting to the main tab in the profile "My Activity".

but when i tried to put it manually with this format

"userid.html?tab=thanks#thanks"

it did work !

Any idea how to implement in the code ?

Thanks

DragonByte Tech
08-13-2017, 12:46 PM
Hi, After i had uploaded it, I can't see any buttons to like the posts!Have you configured the buttons in the AdminCP?

Hi,

I'm still experiencing the same issue regarding the like/thanks notification in the user profile.

The default format is "userid.html?#thanks" just doesn't work it keeps on redirecting to the main tab in the profile "My Activity".

but when i tried to put it manually with this format

"userid.html?tab=thanks#thanks"

it did work !

Any idea how to implement in the code ?

ThanksThis is a bug with vBSEO, unfortunately it is not something that we can fix on our end.


Fillip

creative-friend
08-14-2017, 10:28 AM
I installed on 4.2.5 (PHP 7.1.5). But no button shown in postbit and 'DBTech - Post Thanks' also not shown in admin cp navigation.

DragonByte Tech
08-14-2017, 10:40 AM
Add yourself to Super Administrators in config.php then you’ll see the AdminCP menu.

Fillip

creative-friend
08-14-2017, 06:39 PM
how to import "thanks" from Abe's [AJAX] Post Thank You Hack???

DragonByte Tech
08-14-2017, 06:40 PM
See readme_import.txt for further instructions :)

Make sure you have not erased the built-in buttons. If you have, reinstall the mod. If you don't see any buttons in the Manage Buttons interface, click Rebuild Cache.


Fillip

dbisak
11-02-2017, 12:17 PM
How To Make To Like! unlocked hidden content. I can not come to that.

xlegends
11-09-2017, 10:58 PM
wow, had no idea, not sure why everyone desperately trying to fix the old thank u mod. DBTech once again perfect feature loaded mod.

DragonByte Tech
01-02-2018, 07:27 PM
DBTECH, your quality control and debugging is seriously lacking.
Be that as it may, do you think that's a valid excuse to be as rude as you were in this post? If you are having a bad day, I sympathise with you, but I don't think you should take it out on others.

In either case, I've downloaded the latest zip file from this thread, from the vB3 thread here: https://vborg.vbsupport.ru/showthread.php?t=243511 and from our site here: https://www.dragonbyte-tech.com/store/product/22-advanced-post-thanks-like/

There is absolutely no reference to the text "blog_list_entries_complete" in any of these files.

As you can see from this thread & the vB3 thread linked above, the last time this product was updated was April 2017.


Fillip

DragonByte Tech
01-02-2018, 07:51 PM
Are you seriously going to try to tell me the issue wasn't caused by version 3.6.3?I am seriously going to tell you that maybe the issue was hotfixed* between the first day v3.6.3 was released (13th February 2017, according to this page: https://www.dragonbyte-tech.com/store/product/22-advanced-post-thanks-like/ ) and 20th April 2017.

I am also seriously going to tell you that maybe you downloaded v3.6.3 somewhere in that 2 month period (or however long it was in between noticing the issue and fixing it).

Lastly, I am going to seriously tell you that since this thread, the vB3 thread and our site is not flooded with people experiencing the same issue (in spite hundreds of downloads), chances are the latest version of the files do not contain this issue.


* by "hotfix", I mean fixing the issue without releasing a new version. Files may be patched @ DBTech without the release date or version number changing, and new .zip files may be generated and uploaded here @ vBulletin.org without releasing a new version.


Fillip

djbaxter
01-02-2018, 08:06 PM
<span style="text-decoration: line-through">I am pretty certain I downloaded 3.6.3 just a few days ago but I will give you the benefit of the doubt and download it again now and see if the issue recurs.</span>

djbaxter
01-02-2018, 08:26 PM
I am back to offer you a sincere apology and to eat a sizeable portion of humble pie.

I could have sworn I downloaded the latest version from here just a few days before upgrading, on December 28, 2017, to be specific.

On double-checking, the version of the ZIP file on my hard drive was dated April 11, 2017, obviously before you last updated it.

I re-upgraded to version 3.6.3 using the updated archive and the previous error with the blog no longer exists.

Again, I sincerely apologize. Thank you for your patience with my frustration and outburst.

(I have deleted my two previous posts.)

DragonByte Tech
01-02-2018, 08:27 PM
Again, I sincerely apologize. Thank you for your patience with my frustration and outburst.
No problem, I'm glad the mod works for you now :)


Fillip

Thr33
01-14-2018, 07:03 PM
Is this mod compatible with 4.2.5 and PHP 7.1.13? Ive been using Abe's Post Thanks but it's showing errors now.

I have tried to use this mod a while back and it failed to hide content within [*hide*] tags after i disabled 'Hide Hack Resurrection'.

DragonByte Tech
01-14-2018, 07:04 PM
Is this mod compatible with 4.2.5 and PHP 7.1.13? Ive been using Abe's Post Thanks but it's showing errors now.

I have tried to use this mod a while back and it failed to hide content within [*hide*] tags after i disabled 'Hide Hack Resurrection'.
Yes, it is. Compatibility with HIDE tags from 3rd party products cannot be guaranteed, however.


Fillip

Thr33
01-14-2018, 07:30 PM
So if i completely uninstalled all 3rd party hide hack products would this one simply replace it without any issues? (in theory).

DragonByte Tech
01-14-2018, 07:32 PM
So if i completely uninstalled all 3rd party hide hack products would this one simply replace it without any issues? (in theory).
Like I said, HIDE tags generated by other mods may not be compatible. That means they may have added attributes or other functionality to their BBCode that means this mod cannot read it.

But yes, if it's just a plain [HIDE] tag with nothing else, then in theory it should work. That is not a guarantee.


Fillip

Thr33
01-14-2018, 07:45 PM
Thanks Fillip :)

geosharing
01-30-2018, 05:04 PM
after install that mod thanks button is not showing in threat ..why and help support ....

MarkFL
01-30-2018, 05:59 PM
after install that mod thanks button is not showing in threat ..why and help support ....

Run the "Repair Cache" function, then you should be ready to begin setting up your buttons. :)

Manipulation
01-31-2018, 01:26 AM
I have installed this plug-in and cannot seem to find a way to remove the little box in the upper right hand corner that say how many like, thanks and dislikes you have. Any help? Thanks!

MarkFL
01-31-2018, 02:24 AM
I have installed this plug-in and cannot seem to find a way to remove the little box in the upper right hand corner that say how many like, thanks and dislikes you have. Any help? Thanks!

In the product's General Options, look at the bottom two settings:


Display Button Click Count - Threads
Display Button Click Count - Forums

Set those to "No" to disable them.

Manipulation
02-08-2018, 09:53 PM
How would I change the profile tab to just say "Likes"? Thanks!

IggyP
02-09-2018, 09:15 PM
edit phrase:

dbtech_thanks_post_thanks_like

;)

Manipulation
02-09-2018, 10:11 PM
edit phrase:

dbtech_thanks_post_thanks_like

;)

I search for the phrase and nothing comes up.

IggyP
02-13-2018, 10:36 AM
try searching for the exact text on the tab.....there will be 2 options, the one listed should be one

Stratis
02-13-2018, 01:24 PM
I search for the phrase and nothing comes up.

It has answered above, for more specific...

Search phrase Post Thanks / Like
it is the one with this varname: $vbphrase[dbtech_thanks_post_thanks_like]

:)

Manipulation
03-04-2018, 01:11 AM
For some odd reason this plug in has made it to where the profiles don't appear at all on the mobile theme. The theme has never been tweaked so not sure why this would happen.

Manipulation
03-07-2018, 10:18 PM
Anyone?

xhells21
04-24-2018, 02:13 AM
Hello! First of all, thanks for the great plugin. I'm using the latest (Lite) version currently.
Everything is working as intended. (I believe)

However, I was unaware I was using the (Pro) version before. I have made a couple new themes, and re-uploaded the plugin to fix some issues I was having. Which have been fixed, but were obviously reverted to (Lite) as I used this post's xml.

Is there any way I can check the status of the Pro version I have had? It would have been a couple years ago that I bought it.. D:

As I would like to move where the Like button shows up, as well as the ability to remove a like that you have given.

Thanks in advance for any help.

dany_danay
05-17-2018, 08:37 AM
Dont show in mobile theme
How to include?

DragonByte Tech
05-17-2018, 09:01 AM
Dont show in mobile theme
How to include?
There's no mobile theme support at this time.

Priority support can always be found @ our site.


Fillip

dany_danay
05-21-2018, 06:14 AM
Fixed

djbaxter
05-21-2018, 07:31 AM
Fixed

Please don't just say "Fixed". Leave a note saying how you fixed it fror anyone else having the same problem.

pcmwebmaster
05-21-2018, 07:04 PM
Hi
After upgrade vbulletin to 4.2.5 thanks button is not working.
When i click it it will disappear.
Do you know solution?
Thanks

TheInsaneManiac
05-22-2018, 04:04 AM
Do you use vBOptimize? If so try clearing cache.

louva-a-Deus
06-25-2018, 02:24 PM
How do I display the buttons on all post and topics?

Zambfd
07-10-2018, 11:29 AM
Do you use vBOptimize? If so try clearing cache.

OMG - thank you! .. we removed the xcache component (php upgrade) on our servers but vbOptimize did not recognize ... neither mentioned it. But it killed the functionality of the Thanks Plugin (Button disappeared on click, nothing happend a.s.o).

oneill
08-05-2018, 12:44 PM
installed it bu can't see thanks/like buttons, any idea ?

X-or
08-25-2018, 02:37 PM
There is something I wanted to suggest and/or get help with.

You can disable the product for guests (for SEO reasons) which is great but then it hides the whole like/dislike bar which is pretty bad IMO as it can incite new registrations to add reactions.

Instead I would advise to show the like/dislike bar but not make it clickable.

This is what other forums that have a similar product do.

Engage visitors and do not disrupt SEO, you get the best of both worlds.

Is it possible to implement this with a simple template change? I have tried to mess with the templates, but to no avail. Thank you.

DragonByte Tech
08-25-2018, 02:38 PM
Is it possible to implement this with a simple template change? Thank you.

Yes, re-enable the product for guests via the setting you described. It's never clickable for guests, so what you're describing is literally the default behaviour.


Fillip

X-or
08-25-2018, 02:43 PM
Yes, re-enable the product for guests via the setting you described. It's never clickable for guests, so what you're describing is literally the default behaviour.


Fillip

I think there could be a misunderstanding, what I mean by "not clickable" is can not click to see the list of people who clicked like/dislike.

X-or
08-26-2018, 11:51 PM
Can I have support for this please?

X-or
09-11-2018, 03:35 PM
Well.....

X-or
09-11-2018, 10:28 PM
I am going to hire a freelance developer to fix this, but I just want to make sure it doesn't violate the license first. Is it fine to do this particular modification?

djbaxter
09-15-2018, 06:33 PM
Error

vBulletin 4.2.5
PHP 5.6.37

PHP Strict Standards: Only variables should be assigned by reference in /.../dbtech/thanks/contenttypes/post/save.php on line 251


The referenced line reads:

$userdata =& datamanager_init('User', $vbulletin, ERRTYPE_STANDARD);

How to fix this?

djbaxter
09-16-2018, 01:43 AM
Installed. Was working. Buttons and counts still display. Settings all double checked.

But suddenly, clicking on the Thanks or Likes buttons does nothing.

Any suggestions for fixing this?

Cable_Player
10-06-2018, 12:28 PM
Hi, is it possible to make the postbit figures clickable to go to member.php?{USERID}-{USERNAME}&tab=thanks#thanks ?

I've messed around with the dbtech_thanks_postbit template using {vb:raw post.userid} but have been unsuccessful.

Thanks

Pocket Aces
10-16-2018, 12:52 PM
install the product first before import
OR
import first before installing this mod

instructions not really clear

Pocket Aces
10-16-2018, 10:32 PM
well we had to create a clone of our 12yr old forum just to see this mod in action, here it is


https://vborg.vbsupport.ru/external/2018/10/1.jpg (https://ibb.co/ioCtFf)



that's how it looks if post has 9,000+ clicks, we're hoping for a collapsible list or on-click popup window, we're planning to avail the pro version, good thing we tried this lite version first in a clone/test forum


PS:
apologies for the preview but had to be done to stress a point

MarkFL
10-17-2018, 01:10 AM
Yes, the Pro version allows you to limit how many names are shown in the postbit:

https://vborg.vbsupport.ru/attachment.php?attachmentid=157220&stc=1&d=1539745749

Pocket Aces
10-20-2018, 02:30 AM
i see, thanks MarkFL

is it normal though that it shows the thanks/likes/dislikes bar header for every post even if post receives no click

MarkFL
10-20-2018, 03:08 AM
i see, thanks MarkFL



is it normal though that it shows the thanks/likes/dislikes bar header for every post even if post receives no click

The way we've got it set up, it only displays the clickable buttons for posts that have not previously received a click.

Pocket Aces
10-20-2018, 07:27 AM
The way we've got it set up, it only displays the clickable buttons for posts that have not previously received a click.
you set your click buttons in post footer or after the post?


i was able to see this mod in pro and it looks like if buttons are set in post footer it still shows the header of the user list box after the post even if no one clicks this mod's buttons, see screenshot below


157228

MarkFL
10-20-2018, 01:55 PM
The Pro version has the option not to display a cloud header.

Pocket Aces
10-20-2018, 02:16 PM
That option disables the header for all posts including the ones with clicks.
I was hoping to hide it only to posts with no clicks.

And by the way even if you choose that option to disable the header, part of it (horizontal line) is still visible.

MarkFL
10-20-2018, 02:50 PM
Here's how we have it set up:

https://vborg.vbsupport.ru/attachment.php?attachmentid=157231&stc=1&d=1540054218

X-or
10-21-2018, 01:48 AM
That option disables the header for all posts including the ones with clicks.
I was hoping to hide it only to posts with no clicks.



And by the way even if you choose that option to disable the header, part of it (horizontal line) is still visible.

I think you should hire a freelance developer to add what you want. Nothing I requested was ever implemented. DBTech products are good but they lack polish unfortunately.

Pocket Aces
10-21-2018, 07:43 AM
Thanks Mark! But sig placement is not an option for us, we've modified sig area to only allow 400x100px display, anything in excess will be cropped.

Anyway, we've decided to stick with Abe's version. We'll just use the $40 to pay someone to fix the issues we're having with Abe's and probably ask some minor update as well.

X-or
10-21-2018, 11:29 PM
Thanks Mark! But sig placement is not an option for us, we've modified sig area to only allow 400x100px display, anything in excess will be cropped.

Anyway, we've decided to stick with Abe's version. We'll just use the $40 to pay someone to fix the issues we're having with Abe's and probably ask some minor update as well.

Whatever suits your needs but if you have a large board I would recommend you this product over abe's. Just hire a coder to fix the issues, it's worth it.

MarkFL
10-21-2018, 11:48 PM
Thanks Mark! But sig placement is not an option for us, we've modified sig area to only allow 400x100px display, anything in excess will be cropped.

Anyway, we've decided to stick with Abe's version. We'll just use the $40 to pay someone to fix the issues we're having with Abe's and probably ask some minor update as well.

The Pro version gives you 4 options on where to place the "cloud." We chose below signatures. You can also choose above signatures, and above/below posts. Also, I am sure you could limit the size of signatures without affecting the cloud, if you chose to display it in the signature. Use the signaturecontainer class rather than the signature class in your CSS class selector.

MrZeropage
10-28-2018, 07:57 AM
Problem while updating this from 3.0.3 to 3.6.3:

Finalising Install...

Class 'THANKS' not found on line 140 in /path/to/my/website/forum/dbtech/thanks/actions/admin/finalise.php
#0 /path/to/my/website/forum/admincp/thanks.php(82): include_once()
#1 {main}

vB4.2.5 on PHP7.1

gnrx
12-16-2018, 09:28 PM
Problem while updating this from 3.0.3 to 3.6.3:



vB4.2.5 on PHP7.1

Actually, I use a thanks of Abe's, I view this thread and I'm thinking in use this (and import of abe's to this) but like you, I use vb 4.2.5 and PHP 7.1, not work with this version?

Thanks and regards.

IggyP
12-16-2018, 10:30 PM
might have better luck posting about it on their site.....i have had some dbtech mods needed upgrade for php in the past and when i posted there they fixed it in a reasonable ammt of time..

best lucks, im right behind you guys on this about to upgrade php also...be nice if it was already fixed.....

iA1
02-18-2019, 05:21 PM
After php upgrade to 7.1, users are complaining that their rep point does not increase on Likes click and likes are not displayed immediately. They are only updated on page refresh.

gnrx
02-18-2019, 05:47 PM
After php upgrade to 7.1, users are complaining that their rep point does not increase on Likes click and likes are not displayed immediately. They are only updated on page refresh.

+1.
I have the same issue with php 7.1

iA1
02-23-2019, 07:01 PM
+1.
I have the same issue with php 7.1

Can you get details of the error from your server logs? For me, I could only see the following error which does not indicate much:

proxy_access_ssl_log:494059:xxx.xxx.xxx.xxx - - [23/Feb/2019:02:25:58 +0x00] "POST /thanks.php HTTP/2.0" 500 1548 "https://www.mydomain.com/testing-zone/50100-test-copy.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36"

gnrx
02-25-2019, 05:15 PM
Can you get details of the error from your server logs? For me, I could only see the following error which does not indicate much:

proxy_access_ssl_log:494059:xxx.xxx.xxx.xxx - - [23/Feb/2019:02:25:58 +0x00] "POST /thanks.php HTTP/2.0" 500 1548 "https://www.mydomain.com/testing-zone/50100-test-copy.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36"


Hello.
Yes, this night I go to view this servers logs, I need to filter because in the last days I have migrated from the server and I had to make adjustments in the new one (I assume I will have errors that have nothing to do with it).
Filter and post results.

Erank
02-27-2019, 09:50 PM
Hi,
First of all, thank you for this mod, it's a great one and just what I looked for!

While testing things in my site I've faced some very wired issue, when opening the dropdown (clicking on username) in the usernote.php page, all the ids in the links are of the user that those notes are of him, so all the actions are applying to him and not to the note's writer.

After some searches and digging I found that the problem is in the "/dbtech/thanks/hooks/statistics.php" file.
The solution is very simple and you can find it in the attached file, all it does is to get the `posterid` column instead of the `userid` column when the script is in notes.php.

Hope it will help you to improve this mod even more,
Eran.

https://f2h.io/7dol32z1ww9a

gnrx
02-28-2019, 06:19 AM
Can you get details of the error from your server logs? For me, I could only see the following error which does not indicate much:

proxy_access_ssl_log:494059:xxx.xxx.xxx.xxx - - [23/Feb/2019:02:25:58 +0x00] "POST /thanks.php HTTP/2.0" 500 1548 "https://www.mydomain.com/testing-zone/50100-test-copy.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36"


Hi,
In what file you view the error logs?
I search in my public_html/logs and not view any error like indicate you...

Regards!

iA1
02-28-2019, 02:22 PM
Hi,
In what file you view the error logs?
I search in my public_html/logs and not view any error like indicate you...

Regards!

I found it in the file named proxy_access_ssl_log in the logs folder. Maybe your server has different configuration.

gnrx
02-28-2019, 02:34 PM
I found it in the file named proxy_access_ssl_log in the logs folder. Maybe your server has different configuration.

In the Apache logs_error I view this:

[Tue Feb 05 01:26:21.461932 2019] [cgi:warn] [pid 31730] [client xxx:12000] AH01220: Timeout waiting for output from CGI script /usr/local/cpanel/cgi-sys/ea-php71, referer: https://www.xxx.com/foro/admincp/plugin.php?do=productdelete&productid=dbtech_thanks&s=

[Fri Feb 08 00:32:52.303982 2019] [cgi:error] [pid 30593] (70008)Partial results are valid but processing is incomplete: [client xxx:64860] AH01225: Error reading request entity data, referer: https://www.xxx.com/foro/recent_thanks.php

[Wed Feb 20 03:08:25.052586 2019] [:error] [pid 29888] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/thanks.version.js?v=363 HTTP/1.1 chdir to /home/virtfs/xxx failed

[Wed Feb 20 03:08:25.066254 2019] [:error] [pid 30876] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/jquery.qtip.min.js HTTP/1.1 chdir to /home/virtfs/xxx failed

[Wed Feb 20 03:08:25.076505 2019] [:error] [pid 30494] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/thanks.js?v=363 HTTP/1.1 chdir to /home/virtfs/xxx failed

iA1
02-28-2019, 02:38 PM
In the Apache logs_error I view this:

[Tue Feb 05 01:26:21.461932 2019] [cgi:warn] [pid 31730] [client xxx:12000] AH01220: Timeout waiting for output from CGI script /usr/local/cpanel/cgi-sys/ea-php71, referer: https://www.xxx.com/foro/admincp/plugin.php?do=productdelete&productid=dbtech_thanks&s=

[Fri Feb 08 00:32:52.303982 2019] [cgi:error] [pid 30593] (70008)Partial results are valid but processing is incomplete: [client xxx:64860] AH01225: Error reading request entity data, referer: https://www.xxx.com/foro/recent_thanks.php

[Wed Feb 20 03:08:25.052586 2019] [:error] [pid 29888] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/thanks.version.js?v=363 HTTP/1.1 chdir to /home/virtfs/xxx failed

[Wed Feb 20 03:08:25.066254 2019] [:error] [pid 30876] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/jquery.qtip.min.js HTTP/1.1 chdir to /home/virtfs/xxx failed

[Wed Feb 20 03:08:25.076505 2019] [:error] [pid 30494] mod_ruid2 www.xxx.com GET /foro/dbtech/thanks/clientscript/thanks.js?v=363 HTTP/1.1 chdir to /home/virtfs/xxx failed


Thank you. Can I post this on https://www.dragonbyte-tech.com/threads/likes-do-not-update-on-php-7-1.23315/ to get help from the author of this mod?

gnrx
02-28-2019, 02:39 PM
Thank you. Can I post this on https://www.dragonbyte-tech.com/threads/likes-do-not-update-on-php-7-1.23315/ to get help from the author of this mod?

Yes, of course! :)

This is the error_logs in apache, I have others logs in others folders but I search and not view about "thanks".

MentorBR
07-28-2019, 06:10 PM
The thank and approve dbtech_thanks buttons have stopped working after upgrading the http forum to https.

I also updated the vb4.2.3 forum to vb4.2.5 and I don't know if that could also be the cause.
Can someone give me a hand?

djbaxter
07-28-2019, 06:19 PM
Your best bet is to contact DBTECH directly.

However, changing to https or upgrading should not be an issue to prevent them working.

Try one of these sites to check what isn't converting to SSL:

https://www.jitbit.com/sslcheck/

https://www.whynopadlock.com/

MarkFL
07-28-2019, 09:16 PM
I'm using the pro version of this product on a site running vB 4.2.5 and converted to SSL, and it continues to work.

djbaxter
07-28-2019, 10:15 PM
I'm using the pro version of this product on a site running vB 4.2.5 and converted to SSL, and it continues to work.

Yes. I'm using the Lite version on a 4.2.5 forum with SSL without issues.

MentorBR
07-29-2019, 01:52 PM
How strange, here only returned to normal after I disable SSL, I do not understand why here this is not working for me

djbaxter
07-29-2019, 02:45 PM
As I said above:

Your best bet is to contact DBTECH directly.

Try one of these sites to check what isn't converting to SSL:

https://www.jitbit.com/sslcheck/

https://www.whynopadlock.com/

That will highlight problem links and scripts which are hardcoded http://

The fix isn't usually difficult: even some included core vBulletin scripts may need to be changed but it's just a matter of switching, for example, from http://example.com to //example.com

Also, I can't remember but there may be fixes for vB 4.2.5 listed somewhere in this very long thread that might make a difference.

MentorBR
07-29-2019, 05:53 PM
It means the "Require Thanks to see Content" and "Require Thanks to see Attachments" features will not work if you enable that option.


Fillip

I have a question regarding this [hide] for example, I enabled this and created a thread in my forum with a lot of information and hide some of the information between the [hide] and [/ hide] tag, the problem is that it is hiding even the information outside this tag and I wanted it to hide only what's inside the tag and only show up after the member thanks or approves the topic.

Anders P
01-10-2020, 03:27 PM
The thank and approve dbtech_thanks buttons have stopped working after upgrading the http forum to https.

I also updated the vb4.2.3 forum to vb4.2.5 and I don't know if that could also be the cause.
Can someone give me a hand?

Same for me, but it happened before chanigng to https

charlesr
02-12-2020, 03:55 PM
Same for me, but it happened before chanigng to https

Did you solve this? I was already on https on 4.2.3 with the plugin working fine and moved to 4.2.5 yesterday and the plugin stopped working. I'm on v3.3.2 of the plugin.

EDIT: upgraded to the latest (PRO) version of the plugin 3.6.3 and it worked again.

cdoyle
09-11-2020, 07:13 PM
I've had this mod installed for awhile now, but one thing I just did by mistake and don't see a way to undo it.

I accidentally clicked 'disliked' on a post, and I can't see a way to unclick it? Is there a way to undo a selection once it's made?

cdoyle
09-15-2020, 03:53 PM
I've had this mod installed for awhile now, but one thing I just did by mistake and don't see a way to undo it.

I accidentally clicked 'disliked' on a post, and I can't see a way to unclick it? Is there a way to undo a selection once it's made?
Anyone know the answer? Am I just missing this functionality?

cdoyle
09-20-2020, 11:17 AM
Just went to their forum, looks like being able to undo a selection is a 'PRO' feature.

In Omnibus
09-22-2020, 09:40 AM
If you trust mods from a developer who is never around you deserve what you get.