Alemin En Haylaz Forum Sitesi

━═☆ HaylazMekan ☆═━

Sitemize üye olarak hizmetlerimizden en iyi şekilde yararlanabilirsiniz.

İstatistik - Top 10 - Manuel Kurulum Kayit

Üye olmak için tıklayın.
İstatistik - Top 10 - Manuel Kurulum 112


Join the forum, it's quick and easy

Alemin En Haylaz Forum Sitesi

━═☆ HaylazMekan ☆═━

Sitemize üye olarak hizmetlerimizden en iyi şekilde yararlanabilirsiniz.

İstatistik - Top 10 - Manuel Kurulum Kayit

Üye olmak için tıklayın.
İstatistik - Top 10 - Manuel Kurulum 112

Alemin En Haylaz Forum Sitesi

Would you like to react to this message? Create an account in a few clicks or log in to continue.

    İstatistik - Top 10 - Manuel Kurulum

    LoRDMoZaRD
    LoRDMoZaRD
    Admin
    Admin


    İstatistik - Top 10 - Manuel Kurulum 78979810
    <b>Mesaj Sayısı</b> Mesaj Sayısı : 342
    <b>Oto Rep</b> Oto Rep : 1006
    <b>Kayıt Tarihi</b> Kayıt Tarihi : 27/11/09
    <b>Cinsiyet</b> Cinsiyet : Erkek
    <b>Doğum Tarihi</b> Doğum Tarihi : 28/01/91
    <b>Yaş</b> Yaş : 33
    <b>Nerden</b> Nerden : istanbul
    <b>İş</b> İş : WebMaster
    İstatistik - Top 10 - Manuel Kurulum 97899910

    İstatistik - Top 10 - Manuel Kurulum Empty İstatistik - Top 10 - Manuel Kurulum

    Mesaj tarafından LoRDMoZaRD Ptsi Ara. 07, 2009 3:47 pm

    Bu kodlar 1,1 rc2 versiyonu ve Çöl ateşi, ve vBturk temaları içindir diğer temalardada bunlara yakın kodlar vardır.

    Öncelikle admin paneline girip kullanılan temadan aşağıdaki ayarı yapıyoruz.

    İstatistik - Top 10 - Manuel Kurulum Top1111ob

    sources/boardindex.php yi açıyoruz

    bu kodu bulup

    Kod:
    // Find all boards and categories, as well as related information.  This will be sorted by the natural order of boards and categories, which we control.

    üst satırına bu kodu ekliyoruz

    Kod:
    // Statistics such as number of boards, categories, etc. by rallyproco
    $result = db_query("
    SELECT COUNT(b.ID_BOARD)
    FROM {$db_prefix}boards AS b", __FILE__, __LINE__);
    list ($context['num_boards']) = mysql_fetch_row($result);
    mysql_free_result($result);

    $result = db_query("
    SELECT COUNT(c.ID_CAT)
    FROM {$db_prefix}categories AS c", __FILE__, __LINE__);
    list ($context['num_categories']) = mysql_fetch_row($result);
    mysql_free_result($result);

    $context['num_members'] = &$modSettings['totalMembers'];
    $context['num_posts'] = &$modSettings['totalMessages'];
    $context['num_topics'] = &$modSettings['totalTopics'];
    $context['most_members_online'] = array(
    'number' => &$modSettings['mostOnline'],
    'date' => timeformat($modSettings['mostDate'])
    );
    $context['latest_member'] = &$context['common_stats']['latest_member'];


    // Poster top 10. by rallyproco
    $members_result = db_query("
    SELECT ID_MEMBER, realName, posts
    FROM {$db_prefix}members
    WHERE posts > 0
    ORDER BY posts DESC
    LIMIT 10", __FILE__, __LINE__);
    $context['top_posters'] = array();
    $max_num_posts = 1;
    while ($row_members = mysql_fetch_assoc($members_result))
    {
    $context['top_posters'][] = array(
    'name' => $row_members['realName'],
    'id' => $row_members['ID_MEMBER'],
    'num_posts' => $row_members['posts'],
    'href' => $scripturl . '?action=profile;u=' . $row_members['ID_MEMBER'],
    'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_members['ID_MEMBER'] . '">' . $row_members['realName'] . '</a>'
    );

    if ($max_num_posts < $row_members['posts'])
    $max_num_posts = $row_members['posts'];
    }
    mysql_free_result($members_result);

    foreach ($context['top_posters'] as $i => $poster)
    $context['top_posters'][$i]['post_percent'] = round(($poster['num_posts'] * 100) / $max_num_posts);

    // yeni uyeler. by rallyproco
    $members_result = db_query("
    SELECT ID_MEMBER, realName, posts
    FROM {$db_prefix}members
    ORDER BY ID_MEMBER DESC
    LIMIT 10", __FILE__, __LINE__);
    $context['yeniuyeler'] = array();
    $max_num_posts = 1;
    while ($row_members = mysql_fetch_assoc($members_result))
    {
    $context['yeniuyeler'][] = array(
    'name' => $row_members['realName'],
    'id' => $row_members['ID_MEMBER'],
    'num_posts' => $row_members['posts'],
    'href' => $scripturl . '?action=profile;u=' . $row_members['ID_MEMBER'],
    'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_members['ID_MEMBER'] . '">' . $row_members['realName'] . '</a>'
    );

    if ($max_num_posts < $row_members['posts'])
    $max_num_posts = $row_members['posts'];
    }
    mysql_free_result($members_result);

    foreach ($context['yeniuyeler'] as $i => $poster)
    $context['yeniuyeler'][$i]['post_percent'] = round(($poster['num_posts'] * 100) / $max_num_posts);

    Default kullananlar: şimdide themes/default/boardindex.template dosyasını açıyoruz
    Çöl Ateşi kullananlar: şimdide themes/col_atesi/boardindex.template dosyasını açıyoruz
    hangi temayı kullanıyorsanız onunkini açıyorsunuz

    bu kodup bulup hepsini siliyoruz (bo kod son mesajları tablo haline falan getirdiyseniz daha önce biraz farklı olabilir o zaman // This is the "Recent Posts" bar. dan başlıyarak // Show information about events, birthdays, and holidays on the calendar. dıra kadar olan kısmı silin )

    Kod:
    // This is the "Recent Posts" bar.
    if (!empty($settings['number_recent_posts']))
    {
    echo '
    <tr>
    <td class="titlebg" colspan="2">', $txt[214], '</td>
    </tr>
    <tr>
    <td class="windowbg" width="20" valign="middle" align="center">
    <a href="', $scripturl, '?action=recent"><img src="', $settings['images_url'], '/post/xx.gif" alt="', $txt[214], '" /></a>
    </td>
    <td class="windowbg2">';

    // Only show one post.
    if ($settings['number_recent_posts'] == 1)
    {
    // latest_post has link, href, time, subject, short_subject (shortened with...), and topic. (its id.)
    echo '
    <b><a href="', $scripturl, '?action=recent">', $txt[214], '</a></b>
    <div class="smalltext">
    ', $txt[234], ' "', $context['latest_post']['link'], '" ', $txt[235], ' (', $context['latest_post']['time'], ')<br />
    </div>';
    }
    // Show lots of posts.
    elseif (!empty($context['latest_posts']))
    {
    echo '
    <table border="0" width="100%" cellspacing="1" cellpadding="0" class="bordercolor">
     <tr>
    <th class="windowbg" align="left" width="42%">Konu</th>
    <th class="windowbg" align="left" width="12%">Gönderen</th>
    <th class="windowbg" align="left" width="25%">Bölüm</th>
    <th class="windowbg" align="left" width="21%">Tarih</th>
     </tr>';


    /* Each post in latest_posts has:
    board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
    subject, short_subject (shortened with...), time, link, and href. */
    foreach ($context['latest_posts'] as $post)
    echo '

    <tr>

    <td class="windowbg2" valign="middle" width="42%"><font style="font-size: 8pt">', $post['link'], '</font></td>
    <td class="windowbg2" valign="middle" width="12%"><font style="font-size: 8pt">', $post['poster']['link'], '</font></td>
    <td class="windowbg2" valign="middle" width="25%"><font style="font-size: 8pt">', $post['board']['link'], '</font></td>
    <td class="windowbg2" valign="middle" width="21%"><font style="font-size: 8pt">', $post['time'], '</font></td>

    </tr>';
    echo '
    </table>';
    }
    echo '
    </td>
    </tr>';
            }

    daha sonra bo kodu bulup

    Kod:
    // Here's where the "Info Center" starts...

    üst satırına bu kodu ekleyin

    // istatistik top 10...by rallyproco

    echo '















    İstatistikler - Top 10
    En çok mesaj gönderenler Yeni üyeler Son Mesajlar




    ';
    foreach ($context['top_posters'] as $poster)
    {
    echo '








    ';

    } echo '
    Üye:Mesaj:
    ', $poster['link'], '', $poster['num_posts'], '






    ';
    foreach ($context['yeniuyeler'] as $poster)
    {
    echo '








    ';

    } echo '
    Üye:Mesaj:
    ',$poster['link'], '',$poster['num_posts'], '



    ';

    // This is the "Recent Posts" bar.
    if (!empty($settings['number_recent_posts']))
    {


    // Only show one post.
    if ($settings['number_recent_posts'] == 1)
    {
    // latest_post has link, href, time, subject, short_subject (shortened with...), and topic. (its id.)
    echo '
    [Linkleri görebilmek için üye olun veya giriş yapın.]

    ', $txt[234], ' "', $context['latest_post']['link'], '" ', $txt[235], ' (', $context['latest_post']['time'], ')

    ';
    }
    // Show lots of posts.
    elseif (!empty($context['latest_posts']))
    {
    echo '





    ';


    /* Each post in latest_posts has:
    board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
    subject, short_subject (shortened with...), time, link, and href. */
    foreach ($context['latest_posts'] as $post)
    echo '







    ';
    echo '
    Konu:Gönderen:Tarih:
    ', $post['short_subject'], '', $post['poster']['link'], '', $post['time'], '
    ';
    }
    echo '
    ';
    }

      Forum Saati C.tesi Kas. 23, 2024 7:08 pm