Hmmm, try going into debug mode and see if the error shows on the page in the place of the blank stuff. (And also, as I originally said, check your error_logs!)
***
To enable debug mode edit the /config.php file and change:
Code:
$config['debug'] = false;
To:
Code:
$config['debug'] = true;
Then edit the /core/includes/config.php file and change:
Code:
// $config['Misc']['debug'] = true;
To:
Code:
$config['Misc']['debug'] = true;
To set that up for only your IP address (replace xxx.xxx.xxx.xxx with your IP), put these lines around the code:
Code:
if($_SERVER['REMOTE_ADDR'] == "xxx.xxx.xxx.xxx") {
CODE HERE
}
***