Beiträge von glenzedne

    Ich habe folgendes Problem:
    Wordpress ist installiert im Verzeichnis: http://www.glenzend.de/wordpress und soll nun bei Eingabe http://www.glenzend.de aufgerufen werden. Es gibt tolle Anleitungen, klingt auch sehr einfach.
    Aber irgendwo ist bei mir ein Fehler und ich finde ihn nicht.
    Im Adminbereich->Einstellungen->Allgemein habe ich die erforderlichen Änderungen gemacht.
    Die index.php ins Hauptverzeichnis verschoben mit folgendem Inhalt:
    ___________________________
    [FONT=courier new]<?php[/FONT]
    [FONT=courier new]/**[/FONT]
    [FONT=courier new] * Front to the WordPress application. This file doesn't do anything, but loads[/FONT]
    [FONT=courier new] * wp-blog-header.php which does and tells WordPress to load the theme.[/FONT]
    [FONT=courier new] *[/FONT]
    [FONT=courier new] * @package WordPress[/FONT]
    [FONT=courier new] */[/FONT]
    [FONT=courier new]
    [/FONT]
    [FONT=courier new]/**[/FONT]
    [FONT=courier new] * Tells WordPress to load the WordPress theme and output it.[/FONT]
    [FONT=courier new] *[/FONT]
    [FONT=courier new] * @var bool[/FONT]
    [FONT=courier new] */[/FONT]
    [FONT=courier new]define('WP_USE_THEMES', true);[/FONT]
    [FONT=courier new]
    [/FONT]
    [FONT=courier new]/** Loads the WordPress Environment and Template */[/FONT]
    [FONT=courier new]require('. /wordpress/wp-blog-header.php' );
    ___________________________________
    [/FONT]
    Die .htaccess im Hauptverzeichnis hat folgenden Inhalt:
    _____________________________________
    [FONT=courier new]# BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L] </IfModule>[/FONT]
    [FONT=courier new][/FONT][FONT=courier new]# END WordPress
    [/FONT]______________________________________

    Und wenn ich jetzt http://www.glenzend.de aufrufe bekomme ich folgende Fehlermeldungen:
    _______________________________

    Warning: require(. /wordpress/wp-blog-header.php) [function.require[FONT=Times][size=12][COLOR=#000000]]: failed to open stream: No such file or directory in /home/vhosts/5000157991/glenzend.de/htdocs/index.php on line 17[/COLOR][/SIZE][/FONT]

    [FONT=Times][size=12][COLOR=#000000]Warning: require(. /wordpress/wp-blog-header.php) [[/COLOR][/SIZE][/FONT]function.require[FONT=Times][size=12][COLOR=#000000]]: failed to open stream: No such file or directory in /home/vhosts/5000157991/glenzend.de/htdocs/index.php on line 17[/COLOR][/SIZE][/FONT]

    [FONT=Times][size=12][COLOR=#000000]Fatal error: require() [[/COLOR][/SIZE][/FONT]function.require[FONT=Times][size=12][COLOR=#000000]]: Failed opening required '. /wordpress/wp-blog-header.php' (include_path='.:') in /home/vhosts/5000157991/glenzend.de/htdocs/index.php on line 17[/COLOR][/SIZE][/FONT]
    [FONT=Times][size=12][COLOR=#000000]____________________________________[/COLOR][/SIZE][/FONT]


    Kann mir jemand weiterhelfen und sagen wo mein Fehler liegt, bitte???