Artikel bearbeiten- weiße Seite-schon viel probiert

  • 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):

    PHP
    error_reporting(E_ALL);

    In der wp-load.php setze vor die Zeile mit dem error_reporting zwei Schrägstriche:

    PHP
    //error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);

    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&ouml;nnen auch <a href=\'%ssetup-config.php\'>die <code>wp-config.php</code> online &uuml;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 &rsaquo; Fehler'/*/WP_I18N_ERROR_TITLE*/);

    }

    ?>
    Allerdings ist wp-config.php da.

    • Anzeige

    Hallo!

    Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.

    • ✔️ Schnelle Ladezeiten (optimiert für WordPress & Co.)
    • ✔️ Deutsche Server & DSGVO-konform
    • ✔️ Persönlicher Support (kein 0815-Ticket-System)

    Mehr erfahren

  • Erledigt:-)
    ich habe noch einmal admin.edit gelöscht und neu geladen ( hatte ich eigentlich am Anfang schon probiert, aber vielleicht habe ich durch die viele Fummelei etwas verstellt) und jetzt funktioniert es!
    Danke Euch allen für den Support!

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!