• Resolved johnhorning-1

    (@johnhorning-1)


    I have discovered that revisions are missing from my pages and posts after installing geodirectory. Can that be fixed? It also seemed to mess up “server rewind” in my cpanel.

Viewing 2 replies - 1 through 2 (of 2 total)
  • peter

    (@dewebbouwmeester)

    I ran into the same issue with missing revisions metabox and revisions not being stored.
    This is caused by

    /**
     * Do not store any revisions (except the one autosave per post).
     */
    if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0);

    on line 82 of geodirectory.php.

    If you add
    define('WP_POST_REVISIONS', 99);
    to your wp-config.php revisisons work again.
    (set ’99’ to the max number of revisions you want to keep).

    Thread Starter johnhorning-1

    (@johnhorning-1)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing Page and Post Revisions’ is closed to new replies.