I am having this error:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 8391171 bytes) in /home/content/18/7016018/html/wp-includes/wp-db.php on line 785
It sounds svery similar. I tried everything you said but it's not working.
1. Try adding this line to your wp-config.php file:
define('WP_MEMORY_LIMIT', '64M');
****This made no difference
2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
****This made no difference
3. If you don't have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M
****This crashed the entire site
THIS IS THE .HTACCESS CODE
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
php_value memory_limit 64M
AM I DOING SOMETHING WRONG??
4. Talk to your host.
GoDaddy can't help.
Can any one help???