WordPress on PHP 5.3.0, “General Settings” blank screen bug fix.
I recently ran into a frustrating issue when WordPress (2.8.4) started acting bad once the server was updated to the latest php 5.3.0. The main issue is pretty well documented if you search Google, and is not a WordPress code problem rather a php bug. My issue was that my “General Settings” screen stopped loading, and hung with a mostly blank page. This was nothing more than a pain. I’ll wait to update my php for a real fix, rather than rolling back to 5.2.
Here’s what I did to make the problem go away.
Open your /wp-admin/options-general.php file and look for this:
<select id="timezone_string" name="timezone_string"> <?php echo wp_timezone_choice($tzstring); ?> </select>
This “wp_timezone_choice” function is the culprit. Until the actual php bug is fixed, this will continue to fail. You can easily fix it by hard coding your timezone as a selected “option” like this:
<select id="timezone_string" name="timezone_string"> <?php echo //wp_timezone_choice($tzstring); ?> <option value="America/New_York" selected='selected'>New York</option> </select>
Notice how I commented out the function and added the “selected option”. You can update the value to be what ever timezone you live in. Here is a list: http://us3.php.net/manual/en/timezones.php
Hope this helps someone, it made me crazy until I worked out this fix.
Cheers!
[...] would appear that you're not the only one to have this issue with WP and PHP 5.3. Here's a possibly related PHP 5.3.0 timezone bug interfering with WP (along with a core-hack fix). Have you tried increasing your memory limit in php.ini? (If for no [...]