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

Etiketler: seditio toplist yada benzeri plugin varmı

Author Message

sixfeetunder

Members


Online status

22 posts

Location: Turkey
Occupation:
Age:

#4942   2007-07-22 23:18 GMT      

kardeş siteler filan gibi birşey yapmak istiyorum bunun için arama yaptım ama foruımda birşey bnulamadım lldu için var sanırım ama sed için avrmı varsa nerde ?

Pİtbulls_Hacker

Members


Online status

48 posts

Location: Turkey
Occupation:
Age:

#4944   2007-07-22 23:25 GMT      
seditio da header dosyasından tags ekleyerek yapabilirsin

sixfeetunder

Members


Online status

22 posts

Location: Turkey
Occupation:
Age:

#4945   2007-07-22 23:31 GMT      

Eklenti yokmu yani?

sixfeetunder

Members


Online status

22 posts

Location: Turkey
Occupation:
Age:

#4962   2007-07-23 16:52 GMT      
http://neocrome.net/page.php?id=2131&a=dl böyle birşey buldum fakat o siteye üye kabule tmiyorlar eğer varsa üyeliği olan indirip upload edip link verebilir mi çok zahmetliyim biliyorum ama

Xiao

Moderators


Online status

866 posts
http://www.seditione.com
Pagerank: 0

Location: Turkey Trabzon
Occupation: Orman Mühendisi
Age: 30

#4967   2007-07-23 17:11 GMT      
recentlinks şeklinde bir klasor oluştur.
sonra recentlinks.php şeklinde bir dosya oluştur.
içine koy:
Code:
<?PHP

/* ====================
Seditio - Website engine
Copyright Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/recentlinks/recentlinks.php
Version=110
Updated=03/01/2007
Type=Plugin
Author=TwistedGA
Description=Recent Links Calling "FavoriteLinks" Plugin Database
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=recentlinks
Part=main
File=recentlinks
Hooks=index.tags
Tags=index.tpl:{PLUGIN_LATESTLINKS}
Minlevel=0
Order=10
[END_SED_EXTPLUGIN]

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

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

/* ============ MASKS FOR THE HTML OUTPUTS =========== */

$cfg['plu_mask_links'] = " %3\$s: %1\$s"." ".$cfg['separator']." "."%2\$s"."<br />";//EDIT
// %1\$s = RecentLinks
// %2\$s = Author
// %3\$s = Date

$plu_empty = $L['None']."<br />";

/* ================== FUNCTIONS ================== */

function sed_get_latestlinks($limit, $mask)//EDIT
{
global $L, $db_favorites_items, $usr, $cfg, $sed_cat, $plu_empty;//EDIT

$sql = sed_sql_query("SELECT si_item, si_desc, MAX(si_id) AS _id, MAX(si_date) AS _date FROM $db_favorites_items GROUP BY si_desc ORDER BY _date DESC LIMIT $limit");//EDIT
$si_latest = array();
while($row = sed_sql_fetcharray($sql)) $si_latest[] = $row['_id'];
$sql = sed_sql_query("SELECT si_item, si_desc, si_id, si_date, si_author FROM $db_favorites_items WHERE si_id IN('".implode("','",$si_latest)."') ORDER BY si_date DESC LIMIT 0, 30");//EDIT

while ($row = sed_sql_fetcharray($sql))
{
$lnk = "<a title=\"".$row['si_desc']."\" href=\"".$row['si_item']."\">".$row['si_item']."</a>";
switch($j)
{
}
$res .= sprintf($mask, $lnk, sed_cc($row['si_author']), date($cfg['formatyearmonthday'], $row['si_date'] + $usr['timezone'] * 3600));//EDIT
}
$res = (empty($res)) ? $plu_empty : $res;
return($res);
}

/* ============= */
//EDIT
if (!$latestlinks && $cfg['plugin']['recentlinks']['maxlinks']>0)
{
$latestlinks = sed_get_latestlinks($cfg['plugin']['recentlinks']['maxlinks'], $cfg['plu_mask_links'] );
sed_cache_store('latestlinks', $latestlinks, 120); }


$t-> assign(array(
"PLUGIN_LATESTLINKS" => $latestlinks,
));
//EDIT
?>

recentlinks.setup.php şeklnde bir dosya oluştur.
içine koy:
Code:
<?PHP

/* ====================
Seditio - Website engine
Copyright Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/recentlinks/recentlinks.setup.php
Version=110
Updated=03/01/2007
Type=Plugin
Author=TwistedGA
Description=Recent Links Calling "FavoriteLinks" Plugin Database
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=recentlinks
Name=Recent Links
Description=Recent Links Calling "FavoriteLinks" Plugin Database
Version=100
Date=03/01/2007
Author=TwistedGA
Copyright=Code pulled from RecentItems and RecentComments. Props to those who made them and leaving quotes to explain functions. If everyone did that, everyone would progress in coding.
Notes=Code is sloppy. I will slowly work the slop out and make it smaller.
SQL=
Auth_guests=R
Lock_guests=W12345A
Auth_members=R
Lock_members=W12345A
[END_SED_EXTPLUGIN]

[BEGIN_SED_EXTPLUGIN_CONFIG]
maxlinks=01:select:0,1,2,3,4,5,6,7,8,9,10,15,20,25,30:4:Recent Links Displayed
[END_SED_EXTPLUGIN_CONFIG]

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

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

?>


index.tpl ye {PLUGIN_LATESTLINKS} etiketini yerleştir.ldu da olan links.php nin eklenti olarak hazırlanmış halidir.
Haziran 2008 Seditio Site Yar??mas? >> http://www.seditione.com

sixfeetunder

Members


Online status

22 posts

Location: Turkey
Occupation:
Age:

#4970   2007-07-23 17:29 GMT      
dediklerini aynen yaptım

Fatal error : SQL error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP BY si_desc ORDER BY _date DESC LIMIT 6' at line 1

Diye uyarı verdi anasayfada

MUST!

Destek Ekibi


Online status

384 posts
http://www.balabirlik.com
Pagerank: 2

Location: Turkey
Occupation: ankara
Age:

#8709   2007-12-03 17:14 GMT      
Quote
sixfeetunder :
dediklerini aynen yaptım

Fatal error : SQL error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP BY si_desc ORDER BY _date DESC LIMIT 6' at line 1

Diye uyarı verdi anasayfada

arkadşlar bende aynı sorunu yaşadım eğer bu eklentinin sql elinde olan varsa bi zahmet versin şimdidein sağolun
Web Sitene Reklam Alıp Para Kazanmak İçin Tıkla
MUST! Security V.1 Kodlama Bitti;sitenize xss,sql injection,script,spam,worm,html,shell saldırısı durumunda saldırganı siteden uzaklaştırarak saldırıyı engeller,

Kaan

Moderators


Online status

2,038 posts
http://www.ntka.org
Pagerank: 3

Location: Turkey
Occupation: Destek
Age: 25

#8712   2007-12-03 17:30 GMT      
sizin için bir tane yapıcam Bekleyin biraz

TheRaskol

Members


Online status

166 posts
http://www.raskolserna.com
Pagerank: 0

Location: Argentina Rosario
Occupation:
Age: 20

#29471   2008-06-09 12:38 GMT      

böyle banner ekleme falanda olursa süper olur yahu.
günlük haftalık ve aylık hit falan (:

Kaan

Moderators


Online status

2,038 posts
http://www.ntka.org
Pagerank: 3

Location: Turkey
Occupation: Destek
Age: 25

#29485   2008-06-09 16:16 GMT      
Artık Seditio ile ilgilenmiyorum ve Dvdbil bütün yetkileri lamış profilimi bile degiştiremiyorum sadece konu silme yetkim var ilgilenmeme sebebimin dvdbille veya bir başkasıyla alakası yok arada bir yardımcı olurum Msn adresimide degiştirdim boşuna kimse eklemesin.
> 1 <

Benzer konular (Similar topics) #BETA

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]