Changes between Initial Version and Version 1 of Ticket #33807
- Timestamp:
- 09/10/2015 04:11:50 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33807
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
duplicate
-
Property
Milestone
changed from
Awaiting Review
to
-
Property
Status
changed from
-
Ticket #33807 – Description
initial v1 5 5 Step 1. Fix the actual issue by applying part of the patch in that ticket. It's a one liner. Open the wp-includes/taxonomy.php file, and go to line 4448. This is that line: 6 6 7 8 {{{ 7 9 wp_schedule_single_event( 'wp_batch_split_terms', time() + MINUTE_IN_SECONDS ); 10 }}} 11 8 12 9 13 The problem is that the arguments are reversed. Switch them, like so: 10 14 15 16 {{{ 11 17 wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_batch_split_terms' ); 18 }}} 19 12 20 13 21 That will fix the underlying issue, but it won't stop the load. To do that, we're going to make a temporary mu-plugin. … … 17 25 Create a new file called "fix.php". 18 26 27 28 {{{ 19 29 <?php 20 30 function clear_bad_cron_entries() { … … 27 37 } 28 38 clear_bad_cron_entries(); 39 }}} 40 29 41 i want to inform you thats fix my problem and hope to upgrade soon to solve this problem 30 42 regards