Seite 1 von 1

Secure Main Admin Einbau problem 2.0.18

Verfasst: 18.11.2005 17:31
von Sorcio
Nabend.

Ich wollte den Mod fürs 2.0.10 einbauen. Allerdings taucht beim aufrufen der db_update.php folgender SQL Fehler auf:

Code: Alles auswählen

Warning: mysql_connect(): Access denied for user: 'scfh1@localhost' (Using password: NO) in /home/s/scfh.de/public_html/phpbb2/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /home/s/scfh.de/public_html/phpbb2/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /home/s/scfh.de/public_html/phpbb2/db/mysql4.php on line 331
phpBB : Kritischer Fehler

Could not connect to the database
Wie kann ich den Mod ans 2.0.18 anpassen, geht das überhaupt?

Vielen Dank
Sorcio :oops:

Verfasst: 18.11.2005 18:30
von Markus67
Hi ....

öffne die db_update.php und suche:

Code: Alles auswählen

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 mit:

Code: Alles auswählen

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);
Dann klappts :wink:

Markus

Verfasst: 18.11.2005 19:26
von Sorcio
Herzlichen Dank! 8)