|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
from the content rebuilder in the control panel, what happens after you run the LIKES rebuilder?
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
Control Panel > General > Post Likes Settingsdoes your forum have a limit on likes per 24 hours? maybe the user used up all of those likes in that period. NOTE: "Allow Members to Like Posts in Locked Threads" is available as of UBB.threads 7.7.5
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Isaac I just now ran the like counts rebuilder I think no changes was made as it looks the same My settings are exactly as your image above
|
|
|
|
Joined: Jun 2006
Posts: 16,348 Likes: 124
|
Joined: Jun 2006
Posts: 16,348 Likes: 124 |
I've been trying to recreate this, feedback would be immensely helpful in ironing out any variations on bugs. To find posts with duplicate likes you'd want to run the query: SELECT
`POST_ID`, COUNT(`POST_ID`),
`USER_ID`, COUNT(`USER_ID`)
FROM
`ubbt_LIKES`
GROUP BY
`POST_ID`,
`USER_ID`
HAVING
COUNT(`POST_ID`) > 1
AND COUNT(`USER_ID`) > 1; Then to remove those likes you'd want to: DELETE FROM
`ubbt_LIKES`
WHERE
`POST_ID`='postidnumber'
AND `USER_ID`='useridnumber' Where the postidnumber and useridnumber would be from the previous query. ubbt_ in both queries would be whatever your database prefix is set to, default being ubbt_
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Gizmo I am travelling and have only a small iPhone 6 until Tuesday
Would you like me to ask the posters to say exactly how they did when making several likes in one post?
I use ubbt_
I got 51 hits with 2-6 likes in ea Posts
I will get home on Tuesday as mentioned and run the second query then
Still I wonder how they could make multiple likes in the first place
Cheers
Last edited by Morgan; 09/25/2020 1:39 PM.
|
|
|
|
Joined: Jun 2006
Posts: 16,348 Likes: 124
|
Joined: Jun 2006
Posts: 16,348 Likes: 124 |
Yes, step by step instructions would be great in trying to get every exploitable variation out there.
And yes, if your prefix is the default then that's the query your need to compile a list of duplicate likes for three LIKES table... I'd recommend doing it when you're back home or have access to a computer as you need to plug those values into the second query.
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Gizmo See the change I did in my post above
|
|
|
|
Joined: Jun 2006
Posts: 16,348 Likes: 124
|
Joined: Jun 2006
Posts: 16,348 Likes: 124 |
I was on my mobile at the time and didn't see the change...
I'm not sure, the system is supposed to turn the like button into an unlike button when submitted; it should only capture the first click (I tried bashing the button on my gardening site and couldn't even get a duplicate).
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
I have now asked for a step by step instruction it’s the same topic link as in my original post above
We’ll see when they reply
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Well this was the first reply Choose Like on post. Click Like confirmation button rapidly. Results vary, 2 to 5 Likes. Probably depends on server response time.
|
|
|
|
Joined: Dec 2003
Posts: 6,621 Likes: 84
|
Joined: Dec 2003
Posts: 6,621 Likes: 84 |
I tried that here and I get only one like. But it is quick here
Blue Man Group There is no such thing as stupid questions. Just stupid answers
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
I tried that here and I get only one like. But it is quick here I tested it on your post above Ruben and liked it 6 times by clicking fast and multiple times I also did it on Britbike see this link http://www.britbike.com/forums/ubbthreads.php/topics/824787/re-undo-a-like#Post824787I know it’s unnatural but people does it
Last edited by Morgan; 09/25/2020 3:34 PM.
|
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
|
|
|
|
Joined: Dec 2003
Posts: 6,621 Likes: 84
|
Joined: Dec 2003
Posts: 6,621 Likes: 84 |
I guess I am just to slow. LOL But I have 200/200 isp service.
Blue Man Group There is no such thing as stupid questions. Just stupid answers
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
thanks for reporting this and directions of how to reproduce it. because of this, an additional issue was found.
we'rre investigating and applying a few code updates.
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
The bug has been corrected, and in the process an entire step has been removed from the LIKE system, making the process quicker. The fix is live here on UBBCentral. If you can still reproduce the issue, please share your steps Thank you Morgan
|
1 member likes this:
Morgan |
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Feedback The fix is live here on UBBCentral. If you can still reproduce the issue, please share your steps: Isaac normally I would not fast click multiple Times. But I did now to test and still managed to like your last post above three times . While we talk Likes I’m just reminding that if possible in the future if we could just click one time on the like button and not have to open a new like button to click again. It was just a reminder which I believe you noticed a while back. Ps when I now unlike the multiple likes they all go away that is good
Last edited by Morgan; 09/26/2020 1:27 AM.
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
i tried to click multiple times and could not reproduce the issue, especially now that there is an "already submitted" popup window that displays if clicking more than once.the same window that works to prevent double-posts.
Also, the secondary confirmation page was removed as part of the fix put in to place. now when you click like, you get a single page that shows, and then takes you right back to the original post when you change your like status.
EDIT: See followup reply
Last edited by isaac; 10/12/2020 2:54 PM.
|
2 members like this:
Gizmo, Morgan |
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
followup reply:
The "Like" and "Unlike" submit button will be disabled on first click. This should resolve the issue without using a pop-up or browser window.
|
2 members like this:
Gizmo, Morgan |
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Thanks Isaac looking forward to it đź‘Ť
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
Thanks Isaac looking forward to it đź‘Ť working on a script to clean-up "individual posts with multiple likes from a user."
|
2 members like this:
Gizmo, Morgan |
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
working on a script to clean-up "individual posts with multiple likes from a user." Completed "Purge redundant POST LIKES by same USER_ID" This will be run with the forum upgrader, and can by run through the control panel Content Rebuilder on demand. It is recommended to also run the "Rebuild Like Counts" Content Rebuilder action after running the purge, which will fix the LIKE counters. Depending on your community, you may need to inform them that their LIKE counter will be updated to reflect accurate likes, rather than the redundant bugged likes, if any.
|
2 members like this:
Morgan, Gizmo |
|
|
|
Joined: Jun 2006
Posts: 996 Likes: 24
Old Hand
|
Old Hand
Joined: Jun 2006
Posts: 996 Likes: 24 |
Isaac I tried to like your last post several times but it didn’t work It kept saying sending Otherwise I like what you informed us about
|
|
|
|
Joined: Apr 2004
Posts: 1,972 Likes: 154
|
Joined: Apr 2004
Posts: 1,972 Likes: 154 |
Isaac I tried to like your last post several times but it didn’t work It kept saying sending Otherwise I like what you informed us about UBBCENTRAL is running a previous snapshot test-code from 20201012. Will update to today's current snapshot code 20201013 (or newer). That will fix the JavaScript error you are seeing on mobile devices (Android/iOS/iPadOS) which does not happen on desktop browsers. edit: updated to 20201014
Last edited by isaac; 10/14/2020 6:13 PM.
|
1 member likes this:
Morgan |
|
|
1 members (Ruben),
606
guests, and
113
robots. |
Key:
Admin,
Global Mod,
Mod
|
|
|
|