Support » Allgemeine Fragen » Login nicht möglich nach Versuch die Seite „Live“ zu schalten

Ansicht von 2 Antworten - 1 bis 2 (von insgesamt 2)
  • Hm, ich würde da so vorgehen:

    1. prüfen, dass im Verzeichnis wp eine index.php mit folgendem Imhalt liegt:
      <?php
      /**
       * Front to the WordPress application. This file doesn't do anything, but loads
       * wp-blog-header.php which does and tells WordPress to load the theme.
       *
       * @package WordPress
       */
      
      /**
       * Tells WordPress to load the WordPress theme and output it.
       *
       * @var bool
       */
      define('WP_USE_THEMES', true);
      
      /** Loads the WordPress Environment and Template */
      require( dirname( __FILE__ ) . '/wp-blog-header.php' );
    2. in der Konfigurationsdatei wp-config.php oberhalb von /* That's all, stop editing! Happy blogging. */ mit einem geeigneten Programmier-Editor (nicht Notepad oder Textedit) folgende Zeile hinzufügen:
      define( 'RELOCATE', true );
    3. Über http://example.com/wp/wp-login.php (natürlich mit deiner Domain) im Backend anmelden.
    4. Website-URL und WordPress-URL prüfen.
      Website-URL: https://example.com
      WordPress-URL: https://example.com/wp
      (beides natürlich wieder mit deiner Domain).
    5. überprüfen, dass im Webstammverzeichnis eine Datei index.phpmit folgendem Inhalt liegt:
      <?php
      /**
       * Front to the WordPress application. This file doesn't do anything, but loads
       * wp-blog-header.php which does and tells WordPress to load the theme.
       *
       * @package WordPress
       */
      
      /**
       * Tells WordPress to load the WordPress theme and output it.
       *
       * @var bool
       */
      define('WP_USE_THEMES', true);
      
      /** Loads the WordPress Environment and Template */
      require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );
    6. Im Backend abmelden und Zeile define( 'RELOCATE', true ); auskommentieren (//define( 'RELOCATE', true );).
    7. Prüfen, ob die Website unter https://example.com angezeigt wird.
    Thread-Starter kernfranken

    (@kernfranken)

    Das hat funktioniert!!!
    Ganz herzlichen Dank für die schnelle Hilfe!

Ansicht von 2 Antworten - 1 bis 2 (von insgesamt 2)
  • Das Thema „Login nicht möglich nach Versuch die Seite „Live“ zu schalten“ ist für neue Antworten geschlossen.