Nein, es bedeutet nur, daß ein fataler Fehler aufgetreten ist. Wenn error_reporting abgeschaltet wurde, kennt man die Ursache nicht.
venusreport: Schreib mal in die index.php im Wurzelverzeichnis deiner WordPress-Installation diese Zeile (direkt unter das <?php):
In der wp-load.php setze vor die Zeile mit dem error_reporting zwei Schrägstriche:
Jetzt solltest du alle Fehler angezeigt bekommen. Was steht da?
Dumme Frage:
Jetzt habe ich das geändert: Muss ich das auf den FTP Server übertragen und wo sehe ich dann die Fehlermeldung?
Es sieht so aus als hätte ich in der wp-load schon eine Fehlermeldung:
<?php
/**
* Bootstrap file for setting the ABSPATH constant
* and loading the wp-config.php file. The wp-config.php
* file will then load the wp-settings.php file, which
* will then set up the WordPress environment.
*
* If the wp-config.php file is not found then an error
* will be displayed asking the visitor to set up the
* wp-config.php file.
*
* Will also search for wp-config.php in WordPress' parent
* directory to allow the WordPress directory to remain
* untouched.
*
* @package WordPress
*/
/** Define ABSPATH as this files directory */
define( 'ABSPATH', dirname(__FILE__) . '/' );//
error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
if ( file_exists( ABSPATH . 'wp-config.php') ) {
/** The config file resides in ABSPATH */
require_once( ABSPATH . 'wp-config.php' );
} elseif ( file_exists( dirname(ABSPATH) . '/wp-config.php' ) && ! file_exists( dirname(ABSPATH) . '/wp-load.php' ) ) {
/** The config file resides one level below ABSPATH */
require_once( dirname(ABSPATH) . '/wp-config.php' );
} else {
// A config file doesn't exist
// Set a path for the link to the installer
if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
else $path = 'wp-admin/';
// Die with an error message
require_once( ABSPATH . '/wp-includes/classes.php' );
require_once( ABSPATH . '/wp-includes/functions.php' );
require_once( ABSPATH . '/wp-includes/plugin.php' );
wp_die(sprintf(/*WP_I18N_NO_CONFIG*/'Anscheinend fehlt die Datei <code>wp-config.php</code>. WordPress braucht diese Datei zum Starten. Hilfe zu diesem Thema finden Sie <a href=\'http://codex.wordpress.org/Editing_wp-config.php%5C'>im WordPress-Codex</a>. Sie können auch <a href=\'%ssetup-config.php\'>die <code>wp-config.php</code> online über einen Assistenten erstellen</a>, allerdings funktioniert dieser nicht auf allen Servern. Der sicherst Weg ist, die Datei manuell zu erstellen.'/*/WP_I18N_NO_CONFIG*/, $path), /*WP_I18N_ERROR_TITLE*/'WordPress › Fehler'/*/WP_I18N_ERROR_TITLE*/);
}
?>
Allerdings ist wp-config.php da.