Ich hab folgendes Problem:
Ich habe nach einem Tutorial (-> http://labs.jumart.de/2008/05/phpbb3-lo ... ner-seite/ ) versucht, Zugriff auf das Usermanagement sowie den LogIn und Logout meines phpBB3 Forums zu bekommen.
Dabei bekomme ich nun immer folgende Fehlermeldung:
Interessanterweise klappt das Forum selbst ohne Probleme, wenn ich auf 'normalem' Weg darauf zugreife (--> http://martinbucer.de/intern/forum/phpbb3/ )The config.php file could not be found.
Click here to install phpBB
Der Fehler kommt nur bei meinem Script. Dieses sieht an der entsprechenden Stelle wie folgt aus:
Code: Alles auswählen
define('IN_PHPBB', true);
define('PHPBB_ROOT_PATH', $_SERVER['DOCUMENT_ROOT'].'/intern/forum/phpbb3/');
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include(PHPBB_ROOT_PATH . 'common.' . $phpEx);
// Start session management
$user->session_begin();
if($_GET['page']==’login’)
{
Code: Alles auswählen
if (!file_exists($phpbb_root_path . 'config.' . $phpEx))
{
die("<p>The config.$phpEx file could not be found.</p><p><a href=\"{$phpbb_root_path}install/index.$phpEx\">Click here to install phpBB</a></p>");
}
ich hoffe, ihr könnt mir helfen. Habe bei google und hier im Forum seit 2 tagen vergeblich nach ener lösung gesucht.
Schon mal Vielen Dank,
Gruss,
SiMoeBoe