[DE] Verschieben von portal.php außerhalb des phpBB3-Ordners
Posted: 6. October 2008 21:26
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:
Bearbeite /forum/.htaccess
Lösche
Öffne /portal.php
Finde
Ersetze mit
Öffne /forum/includes/functions.php
Finde
Ersetze mit
Speichern, hochladen, Cache leeren, das war's.
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
Lösche
Code: Select all
DirectoryIndex portal.php index.php index.html index.htm
Finde
Code: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
Code: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum/';
Finde
Code: Select all
'U_PORTAL' => append_sid("{$phpbb_root_path}portal.$phpEx"),
Code: Select all
'U_PORTAL' => append_sid("../portal.$phpEx"),
FAQ Table Of Contents / Inhaltsverzeichnis