Can anyone explain this exlaination?
-
Just as a follow up, I don’t understand what the user role has to do with this error, but the solution was to clean up the number of revisions. In MySQL we ran the command:
DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = ‘revision’;
AND a.post_date < ‘2010-06-01’;
Also in wp-config.php adding in define(‘WP_POST_REVISIONS’, 9); ensures that we won’t have this happen again in the future.
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Can anyone explain this exlaination?’ is closed to new replies.