Hilfe: Portal Mod Installation geht nicht

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
-G6R-
Mitglied
Beiträge: 1
Registriert: 31.08.2005 12:52

Hilfe: Portal Mod Installation geht nicht

Beitrag 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!
Benutzeravatar
Mahony
Ehemaliges Teammitglied
Beiträge: 12259
Registriert: 17.11.2005 22:33
Wohnort: Ostfildern Kemnat
Kontaktdaten:

Beitrag 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.
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
Antworten

Zurück zu „phpBB 2.0: Mod Support“