Seite 1 von 1
Portal und Intro MOD
Verfasst: 01.01.2006 17:59
von Maniac5000
Ich wollte mir den Portal und Intro MOD von AWSW. Ich habe auch alle Dateien geändert bzw. hochgeladen. Jetzt wollte ich gerade eben die Datei zum Modifizieren der Datenbank ausführen. Dabei bekomm ich aber den Fehler, dass er keine Verbindung zur Datenbank aufbauen kann, obwohl das restliche Forum funktioniert.
Woran kann das liegen?
Verfasst: 01.01.2006 18:03
von gloriosa
Hallo,
öffne die intro_portal_mod_db_install.php und suche Folgendes
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);
und ersetze es mit diesem
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);
Dann sollte es funktionieren !

Verfasst: 01.01.2006 18:07
von Maniac5000
danke
Verfasst: 01.01.2006 18:18
von Maniac5000
Habe ein weiteres Problem:
Im Adminbereich werden die Seiten zur Konfiguration des Intros sowie des Portals nicht angezeigt, auch nich in der Navigationsleiste. Allerdings wurden alle Dateien von mir korrekt hochgeladen.
Woran kann das liegen?