Or error_reporting(E_ALL);
Oh, hold on. setup-config.php defines errors already. Open in Wordpad, and search/replace:
error_reporting(0); –> error_reporting(-1);
Trevor,
Add the following lines to the top of setup-config.php, after the opening <?php tag:
error_reporting(E_ALL);
ini_set(‘display_errors’, 1);
define( ‘WP_DEBUG’, true);
This should give you a more specific error message.
Duncan Russell
[link removed – please see the forum guidelines about links in signatures]