Siteme En Cok Online Onlanların Listesini Koymak İstiyorum




Eylül 08, 2008, 02:50:13 ÖÖ *
Merhaba, Ziyaretçi. Lütfen giriş yapın veya üye olun.

CamelPark SEO tools - Google PageRank
 
Ana Sayfa Yardım Giriş Yap Kayıt G.Tag Etiket




Konu Bilgileri Kısayollar
Konu Başlığı Siteme En Cok Online Onlanların Listesini Koymak İstiyorum
Cevaplar 11
Sonraki Sonraki Konu
Görüntüleyenler0 Üye ve 3 Ziyaretçi konuyu incelemekte.
Görüntülenme 350
Önceki Önceki Konu

Sayfa: [1]   Aşağı git
  Yazdır  
Nisan 12, 2008, 07:23:10 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« : Nisan 12, 2008, 07:23:10 ÖS »

arkadaşlar Siteme Top 10 Kurunca online olanlar gitti nasıl tekrar kurarım
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum

Konuksever Moderatör
Tavsiye Elemanı
*
Mesajlar: 23355


View Profile
Re: Siteme En Cok Online Onlanların Listesini Koymak İstiyorum
« Posted on: Eylül 08, 2008, 02:50:13 ÖÖ »

 
      uyari
Merhaba ziyaretçi.Sitemizin diğer bölümlerinde bulunan program, msn, sohbet, resim, video vs. arşivi için üye olmanızı öneririm.Binlerce üye ile sohbetde cabası..

giris  kayit
Anahtar Kelimeler: Siteme En Cok Online Onlanların Listesini Koymak İstiyorum oyunları, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum programı, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum oyunu indir, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum program yükle, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum download, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum hikayeleri, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum resimleri, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum haber, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum yükle, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum videosu, Siteme En Cok Online Onlanların Listesini Koymak İstiyorum msn eklentisi, şarkı sözleri
Logged
Nisan 14, 2008, 10:56:27 ÖS
CγbεЯCσdεЯ




*


Üye No : 1

Yaş : 27

Cinsiyet : Bay

Nerden :

Konu  :
858

Mesaj : 2611

Prestij : 10794
..:: Cyber Warrior Prograsive Team::..
WWW
Online
« Yanıtla #1 : Nisan 14, 2008, 10:56:27 ÖS »

Normal top 10 sitede var...Sadece kurulumda boardindex.php de

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.

üzerine ekle

Kod:
// max.online olanlar ivan_
    // !!!SLOW This query is sorta slow.  Should we just add a key? (or would that be bad in the long run?)
    $temp = cache_get_data('stats_total_time_members', 600);
    $members_result = db_query("
    SELECT ID_MEMBER, realName, totalTimeLoggedIn
    FROM {$db_prefix}members" . (!empty($temp) ? "
    WHERE ID_MEMBER IN (" . implode(', ', $temp) . ")" : '') . "
    ORDER BY totalTimeLoggedIn DESC
    LIMIT 20", __FILE__, __LINE__);
    $context['top_time_online'] = array();
    $temp2 = array();
    $max_time_online = 1;
    while ($row_members = mysql_fetch_assoc($members_result))
    {
    $temp2[] = (int) $row_members['ID_MEMBER'];
    if (count($context['top_time_online']) >= 10)
    continue;

    // Figure out the days, hours and minutes.
    $timeDays = floor($row_members['totalTimeLoggedIn'] / 86400);
    $timeHours = floor(($row_members['totalTimeLoggedIn'] % 86400) / 3600);

    // Figure out which things to show... (days, hours, minutes, etc.)
    $timelogged = '';
    if ($timeDays > 0)
    $timelogged .= $timeDays . $txt['totalTimeLogged5'];
    if ($timeHours > 0)
    $timelogged .= $timeHours . $txt['totalTimeLogged6'];
    $timelogged .= floor(($row_members['totalTimeLoggedIn'] % 3600) / 60) . $txt['totalTimeLogged7'];

    $context['top_time_online'][] = array(
    'id' => $row_members['ID_MEMBER'],
    'name' => $row_members['realName'],
    'time_online' => $timelogged,
    'seconds_online' => $row_members['totalTimeLoggedIn'],
    '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_time_online < $row_members['totalTimeLoggedIn'])
    $max_time_online = $row_members['totalTimeLoggedIn'];
    }
    mysql_free_result($members_result);

    foreach ($context['top_time_online'] as $i => $member)
    $context['top_time_online'][$i]['time_percent'] = round(($member['seconds_online'] * 100) / $max_time_online);

    // Cache the ones we found for a bit, just so we don't have to look again.
    if ($temp !== $temp2)
    cache_put_data('stats_total_time_members', $temp2, 480);
    //Yeah baby give me some colors =).
if (!empty($MemberColor_ID_MEMBER)) {
//Now Load the Missing global :)
global $user_profile;
loadMemberData($MemberColor_ID_MEMBER);
$cmemcolid = NULL;
if (!empty($modSettings['MemberColorStats'])) {
// max.online olanlar
foreach($context['top_time_online'] as $key => $value) {
$cmemcolid = $context['top_time_online'][$key]['id'];
$profile = &$user_profile[$cmemcolid];
if(!empty($profile['member_group_color']) || !empty($profile['post_group_color']))
$context['top_time_online'][$key]['link'] = '<a href="' . $scripturl . '?action=profile;u=' . $profile['ID_MEMBER'] . '" title="' . $txt[92] . ' ' . $profile['realName'] . '"><font color="'.(!empty($profile['member_group_color']) ? $profile['member_group_color'] : $profile['post_group_color']).'">' . $profile['realName'] . '</font></a>';
}
   }
if (!empty($modSettings['latestMember']) && !empty($modSettings['MemberColorLatestMember'])) {
$profile = &$user_profile[$modSettings['latestMember']];
if(!empty($profile['member_group_color']) || !empty($profile['post_group_color']))
$context['latest_member']['link'] = '<a href="' . $scripturl . '?action=profile;u=' . $profile['ID_MEMBER'] . '" title="' . $txt[92] . ' ' . $profile['realName'] . '"><font color="'.(!empty($profile['member_group_color']) ? $profile['member_group_color'] : $profile['post_group_color']).'">' . $profile['realName'] . '</font></a>';
}
}

boardindex.template.php de

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

üstüne ekle

Kod:
// Full istatistikler . . .
echo '<br><div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? 'style="width: 100%;"' : '', '>
<table border="0" width="100%" cellspacing="1" cellpadding="2" class="bordercolor"><tr>
<td width="100%" colspan="5" class="catbg" height="24">
<font color="#FFFFFF"><b>FuLL - TOP 10</b></font></td>  </tr>
<tr class="titlebg"><span class="smalltext">
<td width="16%"><span class="smalltext">Top 10 Mesaj</font></td>
<td width="16%"><span class="smalltext">Top 10 Karma</font></td>
<td width="26%"><span class="smalltext">Top 10 Online </font></td>
<td width="16%"><span class="smalltext">Top 10 Konu </font></td>
<td width="26%"><span class="smalltext">Top 10 Popüler Konu</font></td></tr>
<tr class="windowbg">
<td width="16%" valign="top"><table width="100%"><tr>
<td width="75%" class="windowbg2"><b><span class="smalltext"><u>Üye</u></font></b></td>
<td width="25%" class="windowbg2" align="right"><span class="smalltext"><b><u>Mesaj</u></b></td></tr><tr>';
foreach ($context['top_posters'] as $poster)
{echo '
<td width="75%" class="windowbg2"><span class="smalltext"><img src="', $settings['images_url'], '/1top10.gif" />', $poster['link'], '</td>
<td width="25%" class="windowbg2" align="right"><span class="smalltext">', $poster['num_posts'], '</td></tr>'; 
}echo '</table></td>
<td width="16%" valign="top"><table width="100%"class="windowbg" ><tr>
<td width="75%" class="windowbg2"><span class="smalltext"><b><u>Üye</u></b></td>
<td width="25%" class="windowbg2" align="right"><span class="smalltext"><b><u>Karma</u></b></td></tr><tr>';
foreach ($context['karma'] as $poster)
{echo '
<td width="75%" class="windowbg2" valign="top"><span class="smalltext"><img src="', $settings['images_url'], '/2top10.gif" />',$poster['link'], '</td>
<td width="25%" class="windowbg2" align="right" valign="top"><span class="smalltext"><center>',$poster['karma'], '</center></td></tr>';
}echo '</table></td>
<td width="26%" valign="top"><table width="100%"class="windowbg" ><tr>
<td width="30%" class="windowbg2"><span class="smalltext"><b><u>Üye</u></b></td>
<td width="70%" class="windowbg2" align="right"><span class="smalltext"><center><b><u>Sure</u></b></center></td></tr><tr>';
foreach ($context['top_time_online'] as $poster)
{echo '
<td width="30%" class="windowbg2" valign="top"><span class="smalltext"><img src="', $settings['images_url'], '/2top10.gif" />',$poster['link'], '</td>
<td width="70%" class="windowbg2" align="right" valign="top"><span class="smalltext">',$poster['time_online'], '</td></tr>';
}echo '</table></td>
<td width="16%" valign="top"><table width="100%"class="windowbg" ><tr>
<td width="75%" class="windowbg2"><span class="smalltext"><b><u>Üye</u></b></td>
<td width="25%" class="windowbg2" align="right"><span class="smalltext"><center><b><u>Konu</u></b></center></td></tr><tr>';
foreach ($context['top_starters'] as $poster)
{echo '
<td width="75%" class="windowbg2" valign="top"><span class="smalltext"><img src="', $settings['images_url'], '/3top10.gif" />', $poster['link'], '</td>
<td width="25%" class="windowbg2" align="right" valign="top"><span class="smalltext"><center>',$poster['num_topics'], '</center></td></tr>';
}echo '</table></td>
<td width="26%" valign="top"><table width="100%"class="windowbg" ><tr>
<td width="80%" class="windowbg2"><span class="smalltext"><b><u>Konu</u></b></td>
<td width="20%" class="windowbg2" align="right"><span class="smalltext"><center><b><u>Hit</u></b></center></td></tr><tr>';
foreach ($context['top_topics_views'] as $topic)
{echo '
<td width="80%" class="windowbg2" valign="top"><span class="smalltext"><img src="', $settings['images_url'], '/4top10.gif" />', $topic['link'], '</td>
<td width="20%" class="windowbg2" align="right" valign="top"><span class="smalltext"><center>', $topic['num_views'], '<img src="', $settings['images_url'], '/ivan_hit.gif" /></center></td></tr>';

}echo '</table></td></tr>';
echo '<tr class="windowbg">
<td width="100%"colspan="5" height="0"><table width="100%"><tr>
<tr class="titlebg"><span class="smalltext">
<td width="32%"><span class="smalltext"><b><u>Yanitlanan Kategori</u></b></td>
<td width="28%"><span class="smalltext"><b><u>Yanitlanan Konu</u></b></td>
<td width="7%"><span class="smalltext"><center><b><u>Hit</u></b></center></td>
<td width="15%"><span class="smalltext"><b><u>Gönderen</u></b></td>
<td width="18%"><b><span class="smalltext"><u>Tarih</u></b></td></tr> </table>
<table cellspacing="1" width="100%" cellpadding="0"  border="0"><tr>';
foreach ($context['latest_posts'] as $post)
echo '
<td class="windowbg2" valign="top" width="32%"><span class="smalltext"><img src="', $settings['images_url'], '/6top10.gif" />', $post['board']['link'],  '</td>
<td class="windowbg2" valign="top" width="28%"><span class="smalltext"><img src="', $settings['images_url'], '/7top10.gif" /><a href="',$post['href'],'">', $post['short_subject'], '</td>
<td class="windowbg2" valign="top" width="8%"><span class="smalltext"><center>', $post['ivan_hit'], '<img src="', $settings['images_url'], '/ivan_hit.gif" /></center></td>
<td class="windowbg2" valign="top" width="15%"><span class="smalltext"><img src="', $settings['images_url'], '/8top10.gif" />', $post['poster']['link'],'</td>
<td class="windowbg2" valign="top" width="18%"><span class="smalltext"><img src="', $settings['images_url'], '/9top10.gif" />', $post['time'], '</td></tr>';
echo '</table></td></tr></table></div>'
Logged

Hizmetlerin devamı için REKLAMLARA tıklayınız....

Açtığınız konulara ETİKET giriniz....

    &
Nisan 17, 2008, 02:07:07 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #2 : Nisan 17, 2008, 02:07:07 ÖS »

ilginiz için cook sagolun hemen deniyorum
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
Nisan 17, 2008, 04:08:25 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #3 : Nisan 17, 2008, 04:08:25 ÖS »

372: foreach ($context['latest_posts'] as $post)
373: echo '
374: <td class="windowbg2" valign="top" width="32%"><span class="smalltext"><img src="', $settings['images_url'], '/6top10.gif" />', $post['board']['link'],  '</td>
375: <td class="windowbg2" valign="top" width="28%"><span class="smalltext"><img src="', $settings['images_url'], '/7top10.gif" /><a href="',$post['href'],'">', $post['short_subject'], '</td>
376: <td class="windowbg2" valign="top" width="8%"><span class="smalltext"><center>', $post['ivan_hit'], '<img src="', $settings['images_url'], '/ivan_hit.gif" /></center></td>
377: <td class="windowbg2" valign="top" width="15%"><span class="smalltext"><img src="', $settings['images_url'], '/8top10.gif" />', $post['poster']['link'],'</td>
378: <td class="windowbg2" valign="top" width="18%"><span class="smalltext"><img src="', $settings['images_url'], '/9top10.gif" />', $post['time'], '</td></tr>';
379: echo '</table></td></tr></table></div>'
380: // Here's where the "Info Center" starts...

381:    echo '<br />

382:    <div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? 'style="width: 100%;"' : '', '>
383:       <div class="catbg" style="padding: 6px; vertical-align: middle; text-align: center; ">
384:          <a href="#" onclick="shrinkHeaderIC(!current_header_ic); return false;"><img id="upshrink_ic" src="', $settings['images_url'], '/', empty($options['collapse_header_ic']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" style="margin-right: 2ex;" align="right" /></a>
385:          ', $txt[685], '
 

böyle hata veriyor
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
Nisan 18, 2008, 12:28:18 ÖS
CγbεЯCσdεЯ




*


Üye No : 1

Yaş : 27

Cinsiyet : Bay

Nerden :

Konu  :
858

Mesaj : 2611

Prestij : 10794
..:: Cyber Warrior Prograsive Team::..
WWW
Online
« Yanıtla #4 : Nisan 18, 2008, 12:28:18 ÖS »

Bütün kurulumları yaptıktan sonra bu hatayı vermemesi lazım... Dosyanı yükle upload sitelerine ver linkini buraya...
Logged

Hizmetlerin devamı için REKLAMLARA tıklayınız....

Açtığınız konulara ETİKET giriniz....

    &
Nisan 18, 2008, 01:39:41 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #5 : Nisan 18, 2008, 01:39:41 ÖS »

Üye olmadığınızdan ötürü linkler gözükmüyor, değilmi ?
Linkleri görmek ve bu sitede anti-sömürge sistemi olduğunu bilip , banlanmıcam diyorsanız Kayıt Olunuz yada bizdenseniz Giriş Yapınız buyur abi
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
Nisan 18, 2008, 10:56:13 ÖS
CγbεЯCσdεЯ




*


Üye No : 1

Yaş : 27

Cinsiyet : Bay

Nerden :

Konu  :
858

Mesaj : 2611

Prestij : 10794
..:: Cyber Warrior Prograsive Team::..
WWW
Online
« Yanıtla #6 : Nisan 18, 2008, 10:56:13 ÖS »

Sources/recent.php eklemelisin...
Logged

Hizmetlerin devamı için REKLAMLARA tıklayınız....

Açtığınız konulara ETİKET giriniz....

    &
Nisan 18, 2008, 11:51:35 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #7 : Nisan 18, 2008, 11:51:35 ÖS »

Kullandıgım tema da boardindex.template.php degiştirdim

sources BoardIndex.php degiştirdim aynı hata zaten bu dosyaları upload ettim
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
Nisan 19, 2008, 11:23:20 ÖS
CγbεЯCσdεЯ




*


Üye No : 1

Yaş : 27

Cinsiyet : Bay

Nerden :

Konu  :
858

Mesaj : 2611

Prestij : 10794
..:: Cyber Warrior Prograsive Team::..
WWW
Online
« Yanıtla #8 : Nisan 19, 2008, 11:23:20 ÖS »

Yedek al dene...

Üye olmadığınızdan ötürü linkler gözükmüyor, değilmi ?
Linkleri görmek ve bu sitede anti-sömürge sistemi olduğunu bilip , banlanmıcam diyorsanız Kayıt Olunuz yada bizdenseniz Giriş Yapınız
Logged

Hizmetlerin devamı için REKLAMLARA tıklayınız....

Açtığınız konulara ETİKET giriniz....

    &
Nisan 20, 2008, 06:16:44 ÖS
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #9 : Nisan 20, 2008, 06:16:44 ÖS »

abi cok sagol ellerine saglık ya sen nasıl yaptın açıklar mısın ben yaptım olmuyo ama sen yapınca oldu

Birde sitede adminin yazıyor altında yeni üye (mesaj sayısına göre) değerlendiriuor onu nasıl çözeriz
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
Nisan 20, 2008, 07:27:56 ÖS
CγbεЯCσdεЯ




*


Üye No : 1

Yaş : 27

Cinsiyet : Bay

Nerden :

Konu  :
858

Mesaj : 2611

Prestij : 10794
..:: Cyber Warrior Prograsive Team::..
WWW
Online
« Yanıtla #10 : Nisan 20, 2008, 07:27:56 ÖS »

Admin--kullanılan tema--Gruplandırılmış üyelerin grup başlıklarını gizle ( en altta ) işaretle...
Logged

Hizmetlerin devamı için REKLAMLARA tıklayınız....

Açtığınız konulara ETİKET giriniz....

    &
Nisan 21, 2008, 12:23:03 ÖÖ
general_457




*


Üye No : 3625

Yaş : 19

Cinsiyet : Bay

Nerden : Ankara

Konu  :
11

Mesaj : 49

Prestij : 21
WWW
Offline
« Yanıtla #11 : Nisan 21, 2008, 12:23:03 ÖÖ »

Admin--kullanılan tema--Gruplandırılmış üyelerin grup başlıklarını gizle ( en altta ) işaretle...

Hayda Bu seferde mesaj sayısına göre gösteriyor admin süper mod gibi grup isimleri gitti
Logged

Yaşasın Türkeyif Bu Siteyi Cok Seviyorum
 Konuya bakanlar
  0 Üye ve 3 Ziyaretçi konuyu incelemekte.
Sayfa: [1]   Yukarı git
  Yazdır  
||| GoogleTagged |||

 
Gitmek istediğiniz yer: