Manage WordPress Post Revision

During migration the files of my website and blogs (around 1,7 GB) I’ve found many files in wordpress database created with some types :

  1. Statistic files (from statpress plugin)
  2. Top 10 file (from top 10 plugin)
  3. Revision file (from built in ‘post revisions) wordpress system)

wordpress post revision 1 Manage Wordpress Post Revision

Wow, since I’m the only editor of the blog I decide to manage this feature more efficient.

Don’t Store Revisions

Looking around for wordpress plugin I decide to use Revision Control wordpress plugin.

From the description :

Revision Control is a plugin for WordPress 2.9+ which gives the user more control over the Revision functionality.

The plugin allows the user to set a site-global setting (Settings -> Revisions) for pages/posts to enable/disable/limit the number of revisions which are saved for the page/post. The user may change this setting on a per-page/post basis from the Revisions Meta box.

The plugin also allows the deletion of specific revisions via the Revisions post metabox.

After install and activate the plugin I can access from Settings sub menu named ‘revision’ :

wordpress post revision 2 Manage Wordpress Post Revision

I decide to set ‘Do not store Revisions’ for Posts and Pages. Click save and I’m saving some db space :-)

See you in other post and stay health!

Thanks for reading, if you think this post help you please consider to buy me a beer

  • Share/Bookmark
Tips

How to Integrate Google Apps Email with cPanel domains

I love Google Apps!

Its free and I can save space in my hosting account while spread the risk of downtime between hosting and email system.

Here step by step guide how to integrate Google Apps Email with Cpanel Domains :

Integrate Google Apps Email MX Record

1. Login to cpanel

Find MX Entry within Mail menu.

mx record cpanel 1 How to Integrate Google Apps Email with cPanel domains

2. Choose domain in cpanel that you want to outsource the email.


Read the rest of this entry »

Thanks for reading, if you think this post help you please consider to buy me a beer

  • Share/Bookmark
Step By Step

wp-db.php on line 958 error and wp_memory_limit

I got error message when I try to access Stats menu from my dashboard.

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 79 bytes) in /home/hosting/public_html/mydomain.net/wp-includes/wp-db.php on line 958

It seem I have memory limitation and need to reconfigure first some point in my wordpress.

Configure WordPress Memory Limit

Add this line in wp-config.php

define('WP_MEMORY_LIMIT', '64M');

Try again and I have no luck. Still same error.

Move the blog with sub domain in my vps account and set the limit to 384 give me great result.

The problem is 64M already place as highest memory value I can use  as I stand in shared host.

Investigate WordPress database data

wp-db.php related to database and that clue give me hint to phpmyadmin and see the status :

wpdb error 1 wp db.php on line 958 error and wp memory limit


Read the rest of this entry »

Thanks for reading, if you think this post help you please consider to buy me a beer

  • Share/Bookmark
Tips, Wordpress