To address memory limit issues, there are two paths:
- Adjust yourself
- Contact your hosting company
Do It Yourself
↑ Back to topEdit your wp-config.php file
↑ Back to topdefine('WP_MEMORY_LIMIT', '256M');
WordPress memory can be different from the server – you need to set this regardless of server memory settings
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Edit your PHP.ini file
↑ Back to topmemory_limit = 256M ; Maximum amount of memory a script may consume (64MB)
Edit your .htaccess file
↑ Back to topphp_value memory_limit 256M