Fehler in phpbb MOD

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Fehler in phpbb MOD

    Hallo, will bei meinem phpbb Forum die letzten 5 Themen anzeigen. Das ganze geht mit dem Recent MOD, das einfügen in das Layout klappt auch ganz gut, allerdings steht unter Thema dann nichts. Der Fehler ist in recent.php, da ich allerdings neuling auf dem Gebiet Forum & PHP bin hab ich keine Ahnung an was des liegt.

    Fehlermeldung beim öffnen von Recent
    Fatal error: Call to a member function sql_query() on a non-object in /var/www/users/klakal/forum/recent.php on line 11

    Hier gehts zum Forum

    Hoffe mal ihr könnt mir helfen

    lg Karl

    EDIT: Hier der Code der ersten 20 Zeilen
    PHP-Code:
    // ############         Edit below         ########################################
    $topic_length '30';    // length of topic title
    $topic_limit '5';    // limit of displayed topics
    $special_forums '0';    // specify forums ('0' = no; '1' = yes)
    $forum_ids '';        // IDs of forums; separate them with a comma
    $content '300';    // length of displayed text
    // ############         Edit above         ########################################

    $sql_auth "SELECT * FROM "FORUMS_TABLE;
    if( !
    $result_auth $db->sql_query($sql_auth) )
    {
        
    message_die(GENERAL_ERROR'could not query forums information.'''__LINE____FILE__$sql_auth);
    }
    $forums = array();
    while( 
    $row_auth $db->sql_fetchrow($result_auth) )
    {
        
    $forums[] = $row_auth;
    }
    $db->sql_freeresult($result_auth); 
    Zuletzt geändert von kla_kal; 23.05.2007, 19:52.

  • #2
    Wo stellst du die Verbindung zur DB her? Das ist der Knackpunkt

    Kommentar

    Lädt...
    X