Seite 1 von 1

keine datenbank verbindung?

Verfasst: 02.03.2006 19:33
von valenterry

Code: Alles auswählen

phpBB : Kritischer Fehler

Could not connect to the database
ist mir beim einbau passiert und kennt wohl jeder...
ich hab mir auch schon die dokumentation dazu durchgelesen, die hat mir aber wenig geholfen.
das merkwürdige ist, dass ich andere mods ganz bequem installieren kann, aber beim kb_mod_2.0.2 funktioniert das datenbank updaten nicht. weiß jemand woran das noch liegen kann?

Verfasst: 02.03.2006 20:27
von Mahony
Hallo
Ändere in der install_kb_tables.php das hier

Code: Alles auswählen

include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'common.'.$phpEx);	
include($phpbb_root_path . 'includes/db.'.$phpEx);
include($phpbb_root_path . 'includes/kb_constants.'.$phpEx);
in das hier

Code: Alles auswählen

include($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'config.'.$phpEx);
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);
include_once($phpbb_root_path . 'common.'.$phpEx);	
include_once($phpbb_root_path . 'includes/db.'.$phpEx);
include_once($phpbb_root_path . 'includes/kb_constants.'.$phpEx);
Dann sollte das funktionieren.

Verfasst: 03.03.2006 15:34
von valenterry
danke so geht es