This error has to do with PHP running out of memory to work with.
Try one of the following solutions (only one) to increase the amount of memory that PHP is allowed to access:
1. Increase the memory limit setting in php.ini e.g. (memory_limit = 64M

. Many hosts may not allow this.
2. Increase the memory limit via .htaccess e.g. (php_value memory_limit 64M). Many hosts may not allow this.
3. Increase the memory limit via wp-config.php e.g. (define('WP_MEMORY_LIMIT', '64MB')
If 64MB isn't enough, try 128.
If you're not sure how to do this, call your hosting provider's support and explain the situation and that you need some help to increase the memory limit for WordPress - they will understand what you need.