Thousands of revisions
-
Hey there,
I have a problem I can’t find a solution for (all latest versions, but it was the same before) at deppheads.com:
Every few seconds, I can see a new revision coming up in the database. I just removed the revisions of the last month and there were over 50000! I mean my forums have a few hundred thousand posts, and they are some kind of reply/topic revisions to existing posts/topics as copies of existing replies (I think). Very curious.
I have no idea how to disable them from being created. I already set auto_save to define('AUTOSAVE_INTERVAL', 86400);
and added
add_action('admin_init', 'disable_revisions'); function disable_revisions(){ remove_post_type_support('revision', 'revisions'); remove_post_type_support('topic', 'revisions'); remove_post_type_support('reply', 'revisions'); }
to my functions.php, but they still appear.
And I disabled revisions for bbpress posts in the settings page.
Any ideas??
Visitors are allowed to post, and I’d like to keep it like that, because it is also my comments system and I know many would not comment if they needed to register.
Here are the last 20 exported as sql (couln’t copy it in, so as a link:)
http://deppheads.com/insert.txt
Here one example of the “parent” http://deppheads.com/forums/reply/359207/
- You must be logged in to reply to this topic.