Seite 1 von 1

Hilfe: Portal Mod Installation geht nicht

Verfasst: 06.03.2006 04:17
von -G6R-
Hallo, seid 5 Stunden versuche ich unter Aufbringung meines gesammten Wissens den Portal-Mod zu Installieren. Klappt natürlich nicht ...

Ich habe das ganze mit dem EZModinstaller installiert, was bis zum aufruf der
intro_portal_mod_db_install.php auch wunderbar funktioniert.

Folgende Fehlermeldung erhalte ich im Debug:
SQL Error : 1146 Table 'd00283bf.phpbb_introportalmod' doesn't exist

SELECT * FROM phpbb_introportalmod

Line : 47
File : portal.php
Rufe ich dann die intro_portal_mod_db_install.php auf so erhalte ich die folgende Fehlermeldung:
Warning: mysql_connect(): Access denied for user: 'd00283bf@localhost' (Using password: NO) in /www/htdocs/w00592f5/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /www/htdocs/w00592f5/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /www/htdocs/w00592f5/db/mysql4.php on line 331
phpBB : Kritischer Fehler

Could not connect to the database
Was ist da los und was mache ich falsch!

Verfasst: 06.03.2006 04:30
von Mahony
Hallo
Hier die Lösung des Problems.

finde in der intro_portal_mod_db_install.php

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 in der intro_portal_mod_db_install.php durch das hier

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);
Das Problem ist bekannt (bitte nächstes mal die Suche benutzen.