Seite 1 von 2

Intro + Portal Mod

Verfasst: 04.12.2005 16:12
von florkrum
Hallo!

Ich bin in der PHPund Forum-Admin Szene ein ziemliches Newbie *g* aber grade dabe ne Community zu gründen!

Jetzt hab ich jedoch Probleme beim Einbau des Intro + Portal Mods! Mir kommt bereits bei der Installation (Ausführen der der intro_portal_mod_db_install.php) Fehlermeldungen mit denen ich nichts anfangen kann!

Ich werde die Meldung hier mal posten! Wäre nett wenn mir jemand nen Tipp geben könnte!


Warning: mysql_connect(): Access denied for user: 'dbo146480811@212.227.119.174' (Using password: NO) in /homepages/14/d146308899/htdocs/forum/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /homepages/14/d146308899/htdocs/forum/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /homepages/14/d146308899/htdocs/forum/db/mysql4.php on line 331
phpBB : Critical Error

Could not connect to the database



Wo hab ich den Fehler gemacht oder was stimmt nicht? Die Meldungen sagen mir persönlich nichts ... Bitte helft mir

fg Flo

Lösung

Verfasst: 04.12.2005 16:15
von gloriosa
Hallo,
öffne die intro_portal_mod_db_install.php und suche Folgendes

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);
und ersetze es mit diesem

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 sollte es funktionieren ! :wink:

Wow

Verfasst: 04.12.2005 16:24
von florkrum
Wow .... das ging ja Ratzfatz und hat funktioniert! :lol:

Danke dir gloriosa

Wetter Addon

Verfasst: 04.12.2005 17:39
von florkrum
HAllo nochmals!

JEtzt mache ich mich über das Wetter Addon her und habe wieder eine FEhlermeldung erhalten!

Parse error: parse error, unexpected T_STRING in /homepages/14/d146308899/htdocs/forum/db_update_wetter_addon.php on line 4

Kann mir hierbei jemand helfen?

Re: Wetter Addon

Verfasst: 04.12.2005 17:44
von gloriosa
Hallo,
öffne die db_update_wetter_addon.php und suche Folgendes

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);
und ersetze es mit diesem

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 sollte es funktionieren ! :wink:

Verfasst: 04.12.2005 18:08
von florkrum
hm ...

... also diesmal hat der Trick nicht funktioniert!

Verfasst: 04.12.2005 18:10
von Jan500
hi
poste mal die db_update_wetter_addon.php ;-)

KB:datei

Jan

Verfasst: 04.12.2005 18:12
von florkrum

Verfasst: 04.12.2005 18:19
von Jan500
hi

probiers mal damit

ersetze

Code: Alles auswählen

$phpbb_root_path = '.\'; 
mit

Code: Alles auswählen

 $phpbb_root_path = './';  
;-)

gruß jan

Danke ...

Verfasst: 04.12.2005 18:21
von florkrum
... das war der Fehler - jetzt is okay!