• Resolved Lindy Norris

    (@lindynorris)


    This error is only happening on one page that has been revised a ton of times, has a unique Template, and has a decent amount of HTML code in the content.

    When logged in as an Editor User the page of /wp-admin/post.php?post=813&action=edit will not fully load. It appears to stop at the Revisions box, and does not load anything below it. The biggest problem is even when selecting Visual Editor it’s still showing HTML Editor.

    This one page gives a red warning at the top saying another user is editing the page, but we’ve confirmed that user is logged out of the site entirely.

    Lastly when you log in as an Administrator none of this happens, and the page appears to be just fine as well as the long list of revisions.

    I modified wp-config.php to have: define(‘WP_POST_REVISIONS’, 9); and that didn’t appear to change anything at all.

    Thanks!
    ~Lindy

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Lindy Norris

    (@lindynorris)

    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.

    I tried running that in MYSQL and it came up with an error : No DB selected. Also Where do i save “define(‘WP_POST_REVISIONS’, 9);”?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WP Admin Page Edit not fully loading for Editor User Role’ is closed to new replies.