Seditio ve Ldu hakkında sınırsız arama yapın
 
 
> 1 <

Etiketler: indirilenler

Author Message

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6643   2007-09-27 23:52 GMT      

En Popülerler
En Çok Okunanlar
En Çok İndirilenler
Önemli Konular
Cevaplanmamış konular

Bu eklentileri yapabilirmisiniz ?

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6644   2007-09-27 23:55 GMT      
topitems eklentisini kullan neocrome de var. önemli konular ve cevaplanmayanlar yok tabiki.

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6648   2007-09-28 00:22 GMT      

War ama link kırık sende warsa upload edebilirmisin

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6650   2007-09-28 02:43 GMT      
http://ntka.org/page-id-387.html Buradan indirebilirsiniz.

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6652   2007-09-28 08:14 GMT      
Peki Bunları index.tpl yada header.tpl nasıl eklicem : )

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6655   2007-09-28 15:42 GMT      
hoks ve tags kısımlarını degiştir hoks index.tags tags index.tpl en altına da $t> diğer eklentilere bakarak yapabilirsin. kolaylıkla. hadi kolay gele

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6674   2007-09-29 17:53 GMT      
topitems.php


Code:
<?PHP

/* ====================
Land Down Under - Website engine
Copyright Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/topitems/topitems.php
Version=110
Updated=2006-dec-21
Type=Plugin
Author=Neocrome
Description=
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=topitems
Part=main
File=topitems
Hooks=standalone
Tags=
Minlevel=0
Order=10
[END_SED_EXTPLUGIN]

==================== */

if (!defined('SED_CODE')) { die('Wrong URL.'); }

$plugin_title = $L['plu_title'];

// Top pages

$sql = sed_sql_query("SELECT page_id, page_cat, page_title, page_count FROM $db_pages WHERE page_state='0' ORDER by page_count DESC LIMIT ".$cfg['plugin']['topitems']['maxlines']);

$plugin_body .= "<h4>".$L['plu_title_pages']."</h4><table class=\"cells\"><tr>";
$plugin_body .= "<td style=\"width:5%;\" class=\"coltop\">".$L['Rank']."</td>";
$plugin_body .= "<td style=\"width:60%;\" class=\"coltop\">".$L['Page']."</td>";
$plugin_body .= "<td style=\"width:25%;\" class=\"coltop\">".$L['Category']."</td>";
$plugin_body .= "<td style=\"width:10%;\" class=\"coltop\">".$L['Hits']."</td></tr>";

$ii = 1;

while ($row = sed_sql_fetcharray($sql))
{
$plugin_body .= "<tr><td style=\"text-align:center;\">".$ii."</td>";
$plugin_body .= "<td><a href=\"page.php?id=".$row['page_id']."\">".sed_cc($row['page_title'])."</a></td>";
$plugin_body .= "<td><a href=\"list.php?c=".$row['page_cat']."\">".$sed_cat[$row['page_cat']]['title']."</a></td>";
$plugin_body .= "<td style=\"text-align:center;\">".$row['page_count']."</td></tr>";
$ii++;
}

$plugin_body .= "</table>";

// Top Downloads

$sql = sed_sql_query("SELECT page_id, page_cat, page_title, page_filecount FROM $db_pages WHERE page_file='1' AND page_state='0' ORDER by page_filecount DESC LIMIT ".$cfg['plugin']['topitems']['maxlines']);

$plugin_body .= "<h4>".$L['plu_title_downloads']."</h4><table class=\"cells\"><tr>";
$plugin_body .= "<td style=\"width:5%;\" class=\"coltop\">".$L['Rank']."</td>";
$plugin_body .= "<td style=\"width:60%;\" class=\"coltop\">".$L['File']."</td>";
$plugin_body .= "<td style=\"width:25%;\" class=\"coltop\">".$L['Category']."</td>";
$plugin_body .= "<td style=\"width:10%;\" class=\"coltop\">".$L['Hits']."</td></tr>";

$ii = 1;
while ($row = sed_sql_fetcharray($sql))
{
$plugin_body .= "<tr><td style=\"text-align:center;\">".$ii."</td>";
$plugin_body .= "<td><a href=\"page.php?id=".$row['page_id']."\">".sed_cc($row['page_title'])."</a>";
$plugin_body .= " (<a href=\"page.php?id=".$row['page_id']."&amp;a=dl\">".$L['Download']."</a>)";
$plugin_body .= "<td><a href=\"list.php?c=".$row['page_cat']."\">".$sed_cat[$row['page_cat']]['title']."</a></td>";
$plugin_body .= "<td style=\"text-align:center;\">".$row['page_filecount']."</td></tr>";
$ii++;
}

$plugin_body .= "</table>";


// Top pages rated

$sql1 = sed_sql_query("SELECT rating_code, rating_average FROM $db_ratings WHERE rating_code LIKE 'p%' ORDER by rating_average DESC LIMIT ".$cfg['plugin']['topitems']['maxlines']);

$plugin_body .= "<h4>".$L['plu_title_rated']."</h4><table class=\"cells\">";
$plugin_body .= "<tr><td style=\"width:5%;\" class=\"coltop\">".$L['Rank']."</td>";
$plugin_body .= "<td style=\"width:45%;\" class=\"coltop\">".$L['Page']."</td>";
$plugin_body .= "<td style=\"width:25%;\" class=\"coltop\">".$L['Category']."</td>";
$plugin_body .= "<td style=\"width:25%;\" class=\"coltop\">".$L['Rated']."</td></tr>";

$ii = 1;
while ($row1 = sed_sql_fetcharray($sql1))
{
$rating_code = $row1['rating_code'];
$rating_average = $row1['rating_average'];
$rating_image = "<img src=\"skins/$skin/img/system/vote".round($rating_average,0).".gif\" alt=\"\">";
$id = substr ($rating_code,1,strlen($rating_code)-1);

$sql = sed_sql_query("SELECT page_id, page_cat, page_title FROM $db_pages WHERE page_id='$id' LIMIT 1", "Plugin/toprated");

$row = sed_sql_fetcharray($sql);

if (empty($cat) || (!empty($cat) && $page_cat== $cat))
{
$plugin_body .= "<tr><td style=\"text-align:center;\">".$ii."</td>";
$plugin_body .= "<td><a href=\"page.php?id=".$row['page_id']."\">".sed_cc($row['page_title'])."</a></td>";
$plugin_body .= "<td><a href=\"list.php?c=".$row['page_cat']."\">".$sed_cat[$row['page_cat']]['title']."</a></td>";
$plugin_body .= "<td>".$rating_image." ".$rating_average."</td></tr>";
$ii++;
}
}

$plugin_body .= "</table>";

?>


topitems.setup.php

Code:
<?PHP

/* ====================
Land Down Under - Website engine
Copyright Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/ads/ads.setup.php
Version=110
Updated=2006-dec-21
Type=Plugin
Author=
Description=
[END_SED]


[BEGIN_SED_EXTPLUGIN]
Code=topitems
Name=Top Items
Description=Show your most downloaded and viewed pages
Version=100
Date=2006-dec-21
Author=
Copyright=
Notes=
SQL=
Auth_guests=W12345A
Lock_guests=W12345A
Auth_members=W12345A
Lock_members=W12345A
[END_SED_EXTPLUGIN]

[BEGIN_SED_EXTPLUGIN_CONFIG]
maxlines=01:select:0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,40,50,100:10:Max lines per list
[END_SED_EXTPLUGIN_CONFIG]

==================== */

if (!defined('SED_CODE')) { die('Wrong URL.'); }

?>


Ben ayarlıyamadım siz ayarlıya bilirmisiniz.

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6675   2007-09-29 17:53 GMT      
1

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6676   2007-09-29 17:53 GMT      

1

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6679   2007-09-29 17:58 GMT      
Kaç Tane Ekledin Böyle eklersen sana kimse yard?mc? olmaz. hele ben hiç Yard?m etmem

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6682   2007-09-29 18:08 GMT      
heralde Reply tuşuna fazla birden fazla tıkladım silermisiniz fazla olan mesajlarımı

Kaan yardım edermisin :S yapamadım dediğin şeyi :S

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6689   2007-09-29 20:34 GMT      
Yazdıgın mesajı silebiliyorsun köşede x var ona tıkla sil.

Siteme ekliyecem yakında ben onu yapalı cok oldu hazırda bekliyor elimde belki bir gün seditio ya geceim diye yaptım ama gecmeyecem. Kritik bir acık cıkana kadar gerci cıksa bile önemli degil bundan sonra bir kere hack lendi site devamı gelsede önemli degil.

Defalarca yazdım ben yine yazıyorum kimse birşey hak etmiyor burada yardımlarımın karşılıgını küfür olarak geri alıyorum ama olsun bir gün anlayacaklar ama gec olucak burada görüyorsunuz her konuya bildiğim kadarıyla cevap yazıyoum ama hala anlamıyorlar çok bilmişlik yapıyorlar madem biliyorsunuz neden yardım istiyorsunuz buradan.? Neyse Eklerim bu aralar siteme indirirsiniz.

Kral

Members


Online status

91 posts
http://www.sekort.com
Pagerank: 2

Location: Turkey istanbul
Occupation: Securtiy
Age: 23

#6697   2007-09-30 01:40 GMT      

Malesef kendi yazdıgımız mesajı sadece edilliye biliyoruz silmeye yetkimiz yok o yüzden editliyip 1 yaptım silme tuşu olsaydi editliyine kadar silerdim bu arada eklenti için cok teşşekür ederim

http://www.seditio-tr.com/son1137-topitems-index-plugin-download-indir-last.html#bottom
> 1 <

Benzer konular (Similar topics) #BETA

KonularMesajlarSon YazarGüncelleme
En Çok İndirilenler ve En Çok Okunanlar3crown451 Gün

Keywords (beta):

Forum Arşiv (beta):

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] [138] [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154] [155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177] [178] [179] [180] [181] [182] [183] [184] [185] [186] [187] [188] [189] [190] [191] [192] [193] [194] [195] [196] [197] [198] [199] [200] [201] [202] [203] [204] [205] [206] [207] [208] [209] [210] [211] [212] [213] [214] [215] [216] [217] [218] [219] [220] [221] [222] [223] [224] [225] [226] [227] [228] [229] [230] [231] [232] [233] [234] [235]