Changes between Initial Version and Version 2 of Ticket #41302
- Timestamp:
- 07/13/2017 02:11:59 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41302
-
Property
Component
changed from
General
toDatabase
-
Property
Summary
changed from
Wordpress not stopping queries which have reached limit and preventing users to load wordpress until query timesout
toWordPress not stopping queries which have reached limit and preventing users to load WordPress until query times out
-
Property
Component
changed from
-
Ticket #41302 – Description
initial v2 1 1 [[Image(Pasted image at 2017_07_13 10_14 AM.png)]] 2 2 3 I have problem with Word press mysql `max_questions=600, max_updates=600` limit3 I have problem with WordPress mysql `max_questions=600, max_updates=600` limit 4 4 5 5 {{{ … … 11 11 wp-db.php:830 12 12 }}} 13 13 comes timeout. 14 14 15 15 I suspect that that after limit is reached … … 17 17 public function set_charset( $dbh, $charset = null, $collate = null ) { 18 18 }}} 19 19 throws and error. 20 20 21 After that wordpress gets stuck on loading something. And you cannot make any other queries on other browser windows.21 After that WordPress gets stuck on loading something. And you cannot make any other queries on other browser windows. 22 22 23 23 Proper script should just kill the query after error that limit has been exceeded.