. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 16M try 32M:
memory_limit = 32M ; Maximum amount of memory a script may consume (32MB)
Done this to 32m
2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 32M
3. Try adding this line to your wp-config.php file:
Increasing memory allocated to PHP
define(‘WP_MEMORY_LIMIT’, ’32M’);
where do i find the 3rd settings?