1

Topic: Inloggning

Någon som vet hur punBB kollar om man är inloggad, har i 2 timmar letat men inte hittat något som funkar.

2 (edited by max_w 2003-06-13 16:51)

Re: Inloggning

Om jag inte tar fel så är det väl denna koden (från index.php)

    $num_guests = 0;
    $result = $db->query('SELECT user_id, ident, logged FROM '.$db->prefix.'online ORDER BY ident') or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());

    while ($cur_user_online = $db->fetch_assoc($result))
    {
        if ($cur_user_online['user_id'] > 0)
            $users[] = '<a href="profile.php?id='.$cur_user_online['user_id'].'">'.htmlspecialchars($cur_user_online['ident']).'</a>';
        else
            $num_guests++;
    }
4B 65 6E 6E 65 6C 20 65 20 65 6E 20 67 61 6E 67 73 74 65 72

Re: Inloggning

Nah, titta på funktionen check_cookie i include/common.php. Jag tror det är det du är ute efter.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

4

Re: Inloggning

Jaha, tror jag kanske missförstod då.. jaja, no harm no foul

4B 65 6E 6E 65 6C 20 65 20 65 6E 20 67 61 6E 67 73 74 65 72