Seite 1 von 1

Intro und Portal Mod - Fehler bei Installation

Verfasst: 08.04.2006 17:21
von resistbabylon
hallo,

hab den intro und portal mod via easymod installiert;
installation lief ohne fehler durch bis zum schluß;
dann kam der fehler (kommt jetzt auch, wenn ich das forum aufrufen will):

Code: Alles auswählen

Could not query Intro + Portal configuration !

RUN intro_portal_mod_db_install.php AND DELETE IT AFTER THAT AND CHECK THE FILES TO EDIT !!!

Fehler beim Abfragen der Intro + Portal Konfiguration !

FÜHRE DIE intro_portal_mod_db_install.php AUS UND LÖSCHE SIE DANACH UND ÜBERPRÜFE DIE ZU EDITIERENDEN DATEIEN !!!

HTH AWSW

DEBUG MODE

SQL Error : 1146 Table 'forum.phpbb_introportalmod' doesn't exist

SELECT * FROM phpbb_introportalmod

Line : 44
File : intro.php
führe ich die datei dann aus, erscheint kritischer fehler
could not connect to database;

wo stelle ich den die datenbankverbindung ein?

anmerkung: datenbank ist angelegt unter der hauptdomain;
das forum liegt auf ner subdomain..

kann das probleme machen?

Verfasst: 08.04.2006 17:36
von gloriosa
Hallo,
die Lösung findest Du in >>> KB:131 <<< unterer Abschnitt ! :oops:

Verfasst: 08.04.2006 18:23
von BB-BF-BM
Um genau zu sein:

Du musst die Datei introportalmod_install.php folgendermaßen verändern und die geänderte Version durchführen:
finde

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

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);
sonst erhälst du eine Fehlermeldung und die benötigten Tabellen werden nicht angelegt.