Skip to:
Content

bbPress.org

Opened 11 years ago

Closed 11 years ago

Last modified 10 years ago

#2586 closed defect (bug) (fixed)

'Count replies in each forum' repair tool breaks reply order (aka. Bug From Hell)

Reported by: netweb's profile netweb Owned by:
Milestone: 2.5.4 Priority: omg sweet tea
Severity: critical Version: 2.5.3
Component: Tools Keywords:
Cc:

Description

Replies are ordered based on the value in wp_posts.menu_order

A new reply is assigned its menu_order value with bbp_get_topic_reply_count( $topic_id, false ) + 1 in the function bbp_new_reply_handler (/includes/replies/functions.php#L358)

Both repair tools "Count replies in each forum" and "Count replies in each topic" would delete all meta values _bbp_reply_count from wp_postmeta thus you could only ever have a _bbp_reply_count post meta value for either topics or forums, never both, dependant on the last tool to run.

If the "Count replies in each forum" was the last run repair tool (i.e. And/Or after the "Count replies in each topic" was performed) then trying to retrieve the bbp_get_topic_reply_count (src) would result in a menu_order of 0 + 1 as the post meta key _bbp_reply_count was non existant for the topic being replied to in wp_postmeta.

The first part of this resolution in tools-fix.patch correctly repairs the repair tools to ensure that each of the above repair tools only deletes it's own forum or topic _bbp_reply_count values in wp_postmeta.

The second part of the resolution is to include a repair tool to repair any broken replies menu_order.

Immediate Workaround: Run the "Count replies in each topic" repair tool and DO NOT run the "Count replies in each forum" repair tool. This will ensure that _bbp_reply_count count is accurate for topics so new replies can use bbp_get_topic_reply_count( $topic_id, false ) + 1 to set the reply menu_order accurately.

Attachments (5)

tools-fix.patch (3.5 KB) - added by netweb 11 years ago.
tools-repair.patch (6.0 KB) - added by netweb 11 years ago.
tools-fix.2.patch (3.0 KB) - added by netweb 11 years ago.
tools-repair.2.patch (6.6 KB) - added by netweb 11 years ago.
2586.patch (9.6 KB) - added by johnjamesjacoby 11 years ago.

Download all attachments as: .zip

Change History (21)

@netweb
11 years ago

This ticket was mentioned in IRC in #bbpress-dev by netweb. View the logs.


11 years ago

#2 @netweb
11 years ago

The tools-fix.patch​ fixes the issue.

The tools-repair.patch​ is a 'work in progress' repair tool to repair replies affected and needs further testing 'to make it work across all permutations and combinations of reply order with or without threaded replies enabled' and refinements et cetera.

Potential Issues: The delete queries in tools-fix.patch​ are a little expensive and could do with breaking down the delete process into chunks.

Last edited 11 years ago by netweb (previous) (diff)

#3 @johnjamesjacoby
11 years ago

The fixer patch can be done with a JOIN between the posts table and the postsmeta table, VS looping through each topic individually (which could result in hundreds of thousands of queries.

The repair patch is a great first stab, but it will kill any installation with more than a few replies as calls to bbp_get_all_child_ids() and wp_update_post() well get costly quickly.

One way to counteract this is to switch our tools to use bbPress's converter ajax, and provide a UI to watch the repairs take place.

@netweb
11 years ago

#4 follow-up: @netweb
11 years ago

I also had this is postmeta which is very inception like, each reply is a 'reply' to the other and will cause both replies to be the last two replies in a topic irrespective of their own or other replies menu_order in a topic.

meta_idpost_idmeta_keymeta_value
4373642248_bbp_reply_to42250
4374242250_bbp_reply_to42248

Not sure how this came to be, have not tried to reproduce this yet, putting it here and to think on this some more.

#5 @johnjamesjacoby
11 years ago

The good thing is we have plenty of meta to work with, should we decide to switch our approach later. The bad thing is we're currently stuck using meta for pretty much everything. :)

#6 @netweb
11 years ago

In tools-repair.2.patch instead of ​running bbp_update_reply_position on every reply it now only runs for each reply that has a duplicate menu_order for any single topic.

The query to return the above check: (With some extra 'select' fields for readability in phpMyAdmin)

SELECT a.ID, a.post_content, a.post_name, a.post_parent, a.menu_order, a.post_type
FROM wp_posts AS a
INNER JOIN( 
        SELECT menu_order, post_parent 
        FROM wp_posts 
        GROUP BY menu_order, post_parent 
        HAVING count( * ) > 1 
        ) AS b
ON a.menu_order = b.menu_order
AND a.post_parent = b.post_parent
WHERE post_type = 'reply'

I have an interesting sample wp_posts table with ~11,000 entries (11 Forums, 2,500 Topics & 5,000 replies)
These were generated by @MZAweb's bbpFauxData plugin (generates bbPress Forums, Topics & Replies) and when a reply is created with this the reply is not given a menu_order value when generated which works in our favor for testing in this ticket.

Showing rows 0 - 29 ( 4,287 total, Query took 0.0313 sec)

So the query is quite fast but as we have no way to determine how many replies may need repairing for bbPress installs 'out in the wild' thus the following still applies though somewhat mitigated:

The repair patch is a great first stab, but it will kill any installation with more than a few replies as calls to bbp_get_all_child_ids() and wp_update_post() well get costly quickly.

I repaired the above 4,287 replies menu_order in 6 passes, each pass ~750 before the PHP 30 second timeout. As stated we have no idea how many replies need to be repaired in the wild and should indeed do the following:

One way to counteract this is to switch our tools to use bbPress's converter ajax, and provide a UI to watch the repairs take place.

#7 in reply to: ↑ 4 @netweb
11 years ago

Replying to netweb:

I also had this is postmeta which is very inception like, each reply is a 'reply' to the other and will cause both replies to be the last two replies in a topic irrespective of their own or other replies menu_order in a topic.

meta_idpost_idmeta_keymeta_value
4373642248_bbp_reply_to42250
4374242250_bbp_reply_to42248

See #2588 for details and fix for this.

#8 follow-up: @ThemeTon
11 years ago

  • Priority changed from omg sweet tea to highest
  • Version set to 2.5.3

Can we have simple replace files of that fixes instead of patch? I don't want to replace all those detailed function fixes manually.
Also this updates can be included on next versions of the plugin?

Thanks a lot

#9 in reply to: ↑ 8 ; follow-up: @netweb
11 years ago

  • Priority changed from highest to omg sweet tea

Replying to ThemeTon:

Can we have simple replace files of that fixes instead of patch? I don't want to replace all those detailed function fixes manually.

The final patch will be a repair tool to be included alongside bbPress' other repair tools.

That said the patch will once we have finalized it update the actual main files so there will not be a need to patch any files manually.

I would also not recommend trying to implement the patch in it's current state as it is pretty much guaranteed to not work for most sites affected. We are refactoring our repair tools to handle this.

Also this updates can be included on next versions of the plugin?

This will be included in the next bbPress release.

p.s "omg sweet tea" is a higher priority than "highest" ;)

#10 in reply to: ↑ 9 @ThemeTon
11 years ago

Replying to netweb:
Okay I see everything including "omg sweet tea" :)

So do you have any info about date of next version? When it will have? (approx or exactly)
I checked this, https://bbpress.trac.wordpress.org/milestone/2.5.4 and there only have completed percent of issues.

Thanks again

Last edited 11 years ago by ThemeTon (previous) (diff)

#11 @johnjamesjacoby
11 years ago

In 5367:

Update to tools:

  • Update topic & reply count repair tools to only delete the appropriate meta keys from the appropriate parents.
  • Include new reply hierarchy repair tool, to fix a possibly poisoned reply hierarchy.

Props netweb. See #2586 (2.5 branch)

#12 @johnjamesjacoby
11 years ago

In 5368:

Update to tools:

  • Update topic & reply count repair tools to only delete the appropriate meta keys from the appropriate parents.
  • Include new reply hierarchy repair tool, to fix a possibly poisoned reply hierarchy.

Props netweb. See #2586 (trunk)

#13 @johnjamesjacoby
11 years ago

In 5372:

Remove extraneous validation in bbp_get_form_reply_to(). Fixes bug causing _bbp_reply_to field to be incorrectly set as the current $reply_id when editing a reply with no reply_to, which can lead to hierarchy issues. See #2586, #2588. (trunk)

#14 @johnjamesjacoby
11 years ago

In 5373:

Remove extraneous validation in bbp_get_form_reply_to(). Fixes bug causing _bbp_reply_to field to be incorrectly set as the current $reply_id when editing a reply with no reply_to, which can lead to hierarchy issues. See #2586, #2588. (2.5 branch)

#15 @johnjamesjacoby
11 years ago

This should finally be fixed. Going to close it as such. Reopen if any other quirks pop up related to this, or create a new ticket and mention this one if any new issues arise.

Thanks everyone for being vigilant and persistent.

#16 @johnjamesjacoby
11 years ago

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.