Re: bbpress forums will disappear then reappear upon refresh
It seems memory_limit issue to me. If you check your php error log there must be a line something like “Allowed memory size of 8388608 bytes exhausted…….”
To resolve that
1. Check your phpinfo() and find “memory_limit” in it (Most server has 8 MB).
2. Now to increase your memory_limit edit your php.ini file and find memory_limit
3. Change existing value memory_limit = 8M ; to something like memory_limit = 12M ;
4. Restart your apache server.
5. Again check phpinfo() and memory_limit, now it should be 12M
I think above workaround will solve your problem.