I've tried adding memory, googling, restarting services and the entire server, but I can't get this one post to show. I have disabled the cache and disabled all of the plugins. I have created a new page to verify that the post itself isn't broken. I have optimized the database through phpmyadmin.
I think it has something to do with the many (640) comments. Any help?
The post link is here.
Thanks!
could be a memory issue
1. Try adding this line to your wp-config.php file:
define('WP_MEMORY_LIMIT', '128M');
2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 128M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
3. If you don't have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 128M
Ok, I got it. I had tried all of those memory suggestions(except I couldn't find the php.ini) but nothing worked. So I dug deeper and found the php.ini and that did it. It was at 8M. No wonder the 640 comments weren't loading!
Thanks.