Problem beim Einbau von Intro-Portal

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
Benutzeravatar
Chaoskuno
Mitglied
Beiträge: 1
Registriert: 20.02.2006 21:41

Problem beim Einbau von Intro-Portal

Beitrag von Chaoskuno »

Hallo,
ich versuche das MOD Intro-Portal einzubauen, aber jedesmal wenn ich die Datei intro_portal_mod_db_install.php öffne bekomme ich folgende Fehlermeldung:

Code: Alles auswählen

Warning: mysql_connect(): Access denied for user 'xxx@'localhost' (using password: NO) in /var/www/vhosts/xxx/subdomains/foto/httpdocs/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /var/www/vhosts/xxx/subdomains/foto/httpdocs/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /var/www/vhosts/xxx/subdomains/foto/httpdocs/db/mysql4.php on line 331
phpBB : Kritischer Fehler

Could not connect to the database
Ich habe schon alles überprüft, aber ich kann den Fehler nicht finden, kann mir jemand mit einem Tipp aushelfen.

cu Kuno
Benutzeravatar
Mahony
Ehemaliges Teammitglied
Beiträge: 12179
Registriert: 17.11.2005 22:33
Wohnort: Ostfildern Kemnat
Kontaktdaten:

Beitrag von Mahony »

Hallo
suche 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);
und 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);
Jetzt sollte keine Fehlermeldung mehr erscheinen.
Taekwondo in Berlin
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“