When I type in my URL, I get a blank/white page. Only after I hit refresh, does it appear. This happens for the other pages on the site as well. I wonder if I made a mistake in the set-up process, or if it is even a wordpress issue. I have searched for a solution to this in the forums, but apparently no one else has had this problem. I am very new to wordpress and appreciate any help or suggestions. Thanks.
Post a link to the site/page.
May want to try this:
If you have "blank pages" in WordPress with wp-cache turned on after you upgrage to PHP 5.1.2 - there is simple fix to solve the problem:-
1. Open wp-cache-phase2.php file* in your favourite text editor
2. Find out wp_cache_ob_end function
3. then inside that function find out line with: ob_end_clean(); (it should be line 219 or about)
4. and finally replace that line with: ob_end_flush();
That did it. Thank you very much.
That worked for me too. That was a serious problem - thank you so much!