Seite 1 von 1
Problem beim installieren des UploadMod
Verfasst: 18.02.2006 15:38
von DH_Insane
Moin!
Habe leider ein kleines Problem mit dem Upload Mod.
Wenn ich ihn installieren will und die datei upload_mod_db_install.php aufrufen will, bekomme ich einen mysql error.
Wie bekomme ich das weg? Eine Config nur für den Installer gibt es ja anscheinend nicht..
Verfasst: 18.02.2006 15:42
von DH_Insane
Hier noch die Fehlermeldung
Code: Alles auswählen
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: NO) in C:\HTTPSRV\xampp\htdocs\board\db\mysql4.php on line 48
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in C:\HTTPSRV\xampp\htdocs\board\db\mysql4.php on line 330
Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in C:\HTTPSRV\xampp\htdocs\board\db\mysql4.php on line 331
phpBB : Kritischer Fehler
Could not connect to the database
Verfasst: 18.02.2006 15:50
von derd
Hallo,
das Problem hatte ich auch gehabt.
Ich habe einfach in der upload_mod_db_install.php
Code: Alles auswählen
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);
durch das ersetzt
Code: Alles auswählen
define('IN_PHPBB', 1);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
dann ging das ganze
Bye derd
Verfasst: 18.02.2006 15:51
von gloriosa
Hallo,
oder auch als Abschnitt 2 in >>> KB:131 <<< nachzulesen !

Verfasst: 18.02.2006 15:57
von DH_Insane
Besten Dank euch beiden, hat geklappt!