Ok – let’s try this (and if you can leave English on when you do it that would be helpful to me):
In your wp-config.php add the following:
define('WP_DEBUG', true); // or false
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
ini_set('display_errors', 'on');
error_reporting(E_STRICT | E_ALL);
define('SAVEQUERIES', true);
define('SCRIPT_DEBUG', true);
error_log('Debug On!') ;
}
The WP_DEBUG_LOG setting will cause all PHP errors to be logged to a file called “debug.log” in your wp-content directory. Hopefully by doing this we’ll see some sort of PHP error when it fails.
You can ignore the SAVEQUERIES and SCRIPT_DEBUG settings if you want, that fragment is from my development area.