Nach Update auf 2.0.18 Probleme mit Recent Topics Mod
Verfasst: 02.11.2005 18:38
Hallo,
ich verwende den Recent Topics Mod Version 2.2.3: http://www.phpbb.de/moddb/mod.php?id=48
Und zwar habe ich eine neue phpbb-Seite erstellt, in welche die Datei recent.php includiert ist:
Seit neuestem erhalte ich beim Aufruf der obigen Datei folgende Fehlermeldung:
PHP Warning: mysql_connect(): Access denied for user: 'traumma_phpbb1@localhost' (Using password: NO) in /home/traumma/public_html/forum/recent.php on line 14
Unable to select server.
Die beanstandete Zeile 14 in der recent.php lautet:
Ich weiß nicht, ob der Fehler mit meinem gestrigen Update auf 2.0.18 zusammenhängt oder schon vorher aufgetreten ist. Vor ein paar Tagen hat es aber noch tadellos funktioniert.
Wenn jemand eine Ahnung hat, woran es liegen könnte, wäre das großartig. *hoff*
LG, IPB_Flüchtling
[editiert von mir; Grund: Titel angepasst]
ich verwende den Recent Topics Mod Version 2.2.3: http://www.phpbb.de/moddb/mod.php?id=48
Und zwar habe ich eine neue phpbb-Seite erstellt, in welche die Datei recent.php includiert ist:
Code: Alles auswählen
<?php
//Benötigte Dateien und Variablen von phpBB
define('IN_PHPBB', true);
$phpbb_root_path = '../forum/';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//Session auslesen und Benutzer-Informationen laden
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
$page_title = 'Die letzten Beiträge im Forum';
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
//***** Inhaltsbereich ******/
echo 'Das sind die neuesten Beiträge:';
include($phpbb_root_path . 'recent.'.$phpEx);
?>
PHP Warning: mysql_connect(): Access denied for user: 'traumma_phpbb1@localhost' (Using password: NO) in /home/traumma/public_html/forum/recent.php on line 14
Unable to select server.
Die beanstandete Zeile 14 in der recent.php lautet:
Code: Alles auswählen
mysql_connect($dbhost, $dbuser, $dbpasswd) OR die('Unable to select server.');
Wenn jemand eine Ahnung hat, woran es liegen könnte, wäre das großartig. *hoff*
LG, IPB_Flüchtling
[editiert von mir; Grund: Titel angepasst]