Changes between Initial Version and Version 2 of Ticket #58559
- Timestamp:
- 07/03/2023 05:13:01 PM (20 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58559
-
Property
Component
changed from
General
toDatabase
-
Property
Component
changed from
-
Ticket #58559 – Description
initial v2 1 {{{ 1 2 2023-06-16 8:52:53 47 [Warning] Aborted connection 47 to db: 'wordpressdb' user: 'wpuser' host: 'localhost' (Got an error reading communication packets) 2 3 2023-06-16 8:52:53 46 [Warning] Aborted connection 46 to db: 'wordpressdb' user: 'wpuser' host: 'localhost' (Got an error writing communication packets) 4 }}} 3 5 4 6 I am constantly seeing read and write errors in database due to wordpress in the current version. I have been running wordpress for years. 5 7 6 8 Upon checking the logs the read errors last query is 9 {{{ 7 10 SELECT SQL_CALC_FOUND_ROWS wp_posts.ID 8 11 FROM wp_posts … … 11 14 ORDER BY wp_posts.post_date DESC 12 15 LIMIT 0, 32 16 }}} 13 17 14 18 The write error last query is 15 19 20 {{{ 16 21 SELECT DISTINCT post_author FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' LIMIT 2 22 }}} 17 23 18 24 Both queries execute fine manually. The problem is not related to timeouts or max allowed packets as both execute manually. … … 21 27 22 28 It seems to be a bug within wordpress. I have literally gone through everything else possible to solve this bug. 23 24