Seite 1 von 1

Problem beim Einbau von Intro-Portal

Verfasst: 24.02.2006 14:09
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

Verfasst: 24.02.2006 14:13
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.