How to turn on post revisions in WordPress. Edit wp-config.php.

<pre lang="bash">
/** WordPress Revisions */
define('WP_POST_REVISIONS', false);

Change to:

<pre lang="bash">
/** WordPress Revisions */
define('WP_POST_REVISIONS', 10);

10 is the number of revisions you want to keep.