Page 1 of 1

[DE] Verschieben von portal.php außerhalb des phpBB3-Ordners

Posted: 6. October 2008 21:26
by Ice
FAQ Table Of Contents / Inhaltsverzeichnis

So verschiebst du portal.php aus dem phpBB3-Ordner ...

... z.B. von http://www.mysite.com/forum/portal.php nach http://www.mysite.com/portal.php.

In dieser Anleitung gehen wir davon aus, dass dein Forum im Ordner /forum/ liegt. Falls die Bezeichnung deines Foren-Ordners anders lautet, so ändere bitte alle Vorkommen von /forum/ entsprechend.

Verschiebe /forum/portal.php nach /portal.php.

Erstelle bzw. bearbeite /.htaccess und füge hinzu:

Code: Select all

DirectoryIndex portal.php index.php index.html index.htm
Bearbeite /forum/.htaccess
Lösche

Code: Select all

DirectoryIndex portal.php index.php index.html index.htm
Öffne /portal.php
Finde

Code: Select all

$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; 
Ersetze mit

Code: Select all

$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum/'; 
Öffne /forum/includes/functions.php
Finde

Code: Select all

        'U_PORTAL'            => append_sid("{$phpbb_root_path}portal.$phpEx"), 
Ersetze mit

Code: Select all

        'U_PORTAL'            => append_sid("../portal.$phpEx"), 
Speichern, hochladen, Cache leeren, das war's.

FAQ Table Of Contents / Inhaltsverzeichnis