Beiträge von DAbsch

    Hi Folks,
    ich habe nun mein WordPress nach der fünften Installation zum laufen gebracht. Allerdings habe ich noch ein Problem mit dem Zugriff:

    In Einstellungen/Allgemein habe ich die

    WordPress-Adresse (URL) //diskstation/wordpress <- was auch funzt (eigentlich //diskstation/web/wordpress)
    Seiten-Adresse (URL) //diskstation/sub.domain.de <- funzt nicht (eigentlich //diskstation/web/sub.domain.de)


    Die index.php habe ich kopiert und die sieht require-zeile eingefügt. Sieht jetzt so saus:


    <?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);
    require('./wordpress/wp-blog-header.php');
    /** Loads the WordPress Environment and Template */
    require( dirname( __FILE__ ) . '/wp-blog-header.php' );

    Wenn ich intern auf die url //diskstation/sub.domain.de gehe bekomme ich folgende meldung:


    Warning: require(./wordpress/wp-blog-header.php): failed to open stream: No such file or directory in /volume1/web/sub.domain.de/index.php on line 15 Fatal error: require(): Failed opening required './wordpress/wp-blog-header.php' (include_path='.') in /volume1/web/sub.domain.de/index.php on line 15


    Ich bitte um Hilfe, Danke!