Nach dem letzten Release von WordPress habe ich mich mal wieder quer durch WordPress gelesen und bin auf ein paar unschöne Dinge wie z.B. die dauernden Revisionen gekommen, welche ich für meinen Teil exakt garnicht brauche. WordPress geht ja wieder mal super auf die Community ein – gut, dann geht nun mal die Community auf WordPress ein…
Zuerst einmal deaktivieren wir die Revisionen, die irgendwie kein Schwein braucht. Dies geschieht in der wp-config.php:
define (‚WP_POST_REVISIONS‘, 0);
Nun sollte man einmal der Datenbank auch noch ein paar Streicheleinheiten geben und den verursachten Dreck rausräumen. Dies geschieht per SQL Query:
DELETE FROM wp_posts WHERE (‚post_name‘ LIKE ‚%-revision%‘ OR ‚post_name‘ LIKE ‚%-autosave%‘);
Damit fliegen auch noch die letzten Reste aus der Datenbank. Da es sich um eine Anweisung handelt, die aus der Datenbank löscht, würde ich ein Backup vorschlagen um im Fall des Falles etwas zur Hand zu haben. Ihr kennt ja alle Murphy und sein Gesetz…
numerodix says:
Revisions is actually the most useful new feature in a long time. I guess you write short entries, but for people who write long ones it’s really helpful to save underway and keep track of what has happened in the writing process.
Stargazer says:
I usually write my postings using an external editor and copy/paste them or I am using the xmlrpc connector
numerodix says:
I haven’t tried that because these external apps don’t have an equally good editor interface (the javascript thingy). I use stuff like ‚code‘ tags all the time, I post source code, include images, I also check how it lays out on the page because it’s not always predictable. All this pretty much rules out an external editor for me.
Stargazer says:
I guess you haven’t tried Blogdesk yet, have you?
numerodix says:
A Windows app? What on earth would I do with that?
Stargazer says:
I was using it those days running linux. Wine is a nice toy…