Seite 2 von 2

Verfasst: 10.03.2006 19:23
von klausm
Hallo,

du mußt folgende Änderung in der db_install vornehmen.

Suche:

Code: Alles auswählen

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); 

Ersetze durch:

Code: Alles auswählen

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); 

Verfasst: 11.03.2006 10:25
von eezee1024
Dann führe doch die SQL-Abfragen aud der php manuell im phpmyadmin aus.

Verfasst: 12.03.2006 12:35
von Saxonyking
Vielen Dank klausm. Die Änderung der db_install.php nach deinen Vorgaben hat mich zum Ziel geführt. Es funktioniert jetzt alles super!!
Danke