Fatal error “Allowed Memory Size Exhausted” error

The reason for this error is that your server configuration has a very low memory limit. Try adding this to wp-config.php (put it after <?php in this file):

define(‘WP_MEMORY_LIMIT’, ’96M’);

Please note that this limit is OK for the theme and the plugins that come with the theme. If you want to enable other plugins you may need to increase the limit further.

define(‘WP_MEMORY_LIMIT’, ‘256M’);

The official WordPress guide on this topic can be found here: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP