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

Locked
User avatar

Topic author
Ice
Former Team Member
Posts: 359
Joined: 20. January 2008 23:43
Location: England, United Kingdom

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

Post 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
Last edited by thomas.d on 6. October 2008 22:05, edited 2 times in total.
Reason: Grammar Edit
Board3 Portal Dev & English Tech Support
Locked

Return to “KB-Archiv”