Page 1 of 41234»

Delete and Remove Existing Saved Wordpress Post Revisions

January 11, 2009 · Filed Under Wordpress · 3 Comments 

Delete and Remove Existing Saved Wordpress Post Revisions

One of the new feature in Wordpress 2.6 and above that irritates me is the post revision. Not only does Wordpress create and stores all the past revision automatically every 10 minutes or so, it causes your server MySQL database to be bloated with unwanted data. Within a few months, your ‘wp_posts’ table will be filled up, clustered, and the post ID will be gigantic. Worst case scenario when you backup your MySQL is to have a 50MB database, too big for uploading in case of server failure.

If you do not need this feature you can easily turn it off by adding one line to your wp-config.php file, found in the installation directory of your WordPress site:

    define(’WP_POST_REVISIONS’, false);

Adding this line to your wp-config.php file does not delete your previous saved post revisions, to remove previous post revision permanently, run this query using the WP-DBManager plugin.

    DELETE FROM wp_posts WHERE post_type = “revision”;

This will get the job done in no time and your database in good shape. Please note that extra precaution is to be taken when amending your database, make sure you keep a good backup copy before proceeding with the amendments.

Global Translator Wordpress Plugin Incorporate Free Online Translator

August 29, 2008 · Filed Under Wordpress · 1 Comment 

Global Translator Wordpress Plugin Incorporate Free Online Translator

Alright, the name says it all, its a translator and it does what it claimed. Before I dive into some of the unique features, please note that Global Translator is a Wordpress Plugin made free by Nothing2Hide.

Unlike other translator plugin, Global Translator does what most paid plugin offers, and they are Fast Caching System and Unique URL, yes, you heard me, for example the english version on www.domain.com/mypost will be automatically transformed in www.domain.com/en/mypost. Making the url SEO friendly.

As shown above, this unique URL structure gives a big boost to your overall traffic, drawing visitors from around the globe. This is a must have Wordpress Plugin for all wordpress user. I’m not going to elaborate further, the author’s blog has an in-depth explanation on how the plugin works, download now at Nothing2Hide.

Related Posts with Thumbnails
Page 1 of 41234»