Seite 1 von 1
alternative zum intro portal mod
Verfasst: 21.03.2006 13:51
von mbe
hallo,
suche dringend eine alternative zum intro & portal mod da bei mir immer beim aufrufen der db-config-datei ein mysl-error erscheint!
kennt irgendjemand eine alternative??
mfg max
Verfasst: 21.03.2006 14:11
von Mahony
Hallo
da bei mir immer beim aufrufen der db-config-datei ein mysl-error erscheint!
Du musst in der
intro_portal_mod_db_install.php
das hier
Code: Alles auswählen
<?php
define('IN_PHPBB', 1);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
mit dem hier ersetzen
Code: Alles auswählen
<?php
define('IN_PHPBB', 1);
$phpbb_root_path = './';
include_once($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'config.'.$phpEx);
include_once($phpbb_root_path . 'common.'.$phpEx);
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);
include_once($phpbb_root_path . 'includes/db.'.$phpEx);
danach hochladen und aufrufen
Grüße: Mahony
Verfasst: 21.03.2006 14:16
von mbe
danke. so tut es!
Verfasst: 22.03.2006 14:51
von BananaJoe
Danke auch!
Hat bei mir endlich geklappt.