Hi - I'm completely new to drupal. I installed Drupal7 onto a windows 7 machine already set up as a web server and it semmed to go without any problems other than having to enable GD. However, when I go to either admin->configuration or admin->reports->status, eventually the screen goes to WSOD. I have not added content or done anything with drupal yet, other than install it.
I'm running PHP 5.2.17 MySQL 5.5 and Apache 2.2.19 and the setup runs my own PHP database driven websites ok.
The PHP memory limit is 128M, so that shouldn't be the problem.
After I found the problem I found 2 pieces of advice about displaying php errors so added the following snippets of code, first to settings.php then to index.php after the first one displayed nothing:
To settings.php I added
error_reporting(-1);
$conf['error_level']=2;
ini_set('display_errors',TRUE);
ini_set('display_startup_errors',TRUE);
and to index.php I added
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
So, I still get the WSOD with no php errors displayed.
Administration->Reports->Recent log messages is not showing any problems.
The Apache error log is not showing any problems either.