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

Etiketler: tagcloud ldused çeviri yardım

Author Message

samba

Members


Online status

64 posts

Location: Turkey
Occupation:
Age:

#12772   2008-01-25 13:39 GMT      

neocromede kaan kardeşimizin bu eklentinin ldu versiyonunun kodları verildi ancak ben bunu seditio yada çevirmeyi denedim ancak olmadı ne hatam var?
ldu orjinal kaanın kodları;
Code:
<?PHP

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

[BEGIN_LDU]
File=plugins/extended/tagcloud/tagcloud.php
Version=802
Updated=2005-dec-12
Type=Plugin
Author=Neocrome
Description=
[END_LDU]

[BEGIN_LDU_EXTPLUGIN]
Code=tagcloud
Part=main
File=tagcloud
Hooks=index.tags
Tags=index.tpl:{KaanMetaAutoTags}
Minlevel=0
Order=10
[END_LDU_EXTPLUGIN]

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


if (!defined('LDU_CODE')) { ldu_diefatal('Wrong URL.'); }

$s = cv('s','G','ALP',3);
$plugin_title = "<a href=\"plug.php?e=tagcloud\">Tag Cloud</a>";
$plugin_subtitle = "Sitedeki en popüler kelimelerin listesi ";



$sql = ldu_query("SELECT ft_title, ft_id FROM $db_forum_topics WHERE ft_state=0 AND ft_id NOT LIKE

'system' ");
while ($row = ldu_fetch_array($sql))
{
$tags[] = " ".$row['ft_title']." ".$row['ft_id']." ";
}

$tags = implode('',$tags);
$key_array = explode(" ", $tags);

$value_array_1 = array_change_key_case($key_array, CASE_LOWER);
$value_array = array_count_values($value_array_1);

if ($s=="pop")
{
arsort($value_array);
}
else
{
        ksort($value_array);
}

$max_size = 12;
$min_size = 10;

$max_qty = max(array_values($value_array));
$min_qty = min(array_values($value_array));

$spread = $max_qty - $min_qty;
if ($spread == 0)
{
        $spread = 1;
}

$step = ($max_size - $min_size) / ($spread);

foreach ($value_array as $key => $value)
{
$key = strtolower($key);
if ($value==1)
{
unset($key);
}
$size = round($min_size + (($value - $min_qty) * $step));

        $plugin_tagcloud .= "<a href=\"\" style=\"font-size:".$size."px;\" title=\"".$value."

things tagged with ".$key."\">".$key."</a> ";
}

$plugin_tagcloud .= "</div>";

$t-> assign(array(
"KaanMetaAutoTags" => $plugin_tagcloud));

?>

benim sed e çevirdiğim kodlar;
Code:
<?PHP

/* ====================
Seditio - Website engine
Copyright Neocrome
http://www.neocrome.net
[BEGIN_SED]
File=plugins/tagcloud/tagcloud.php
Version=121
Updated=2007-jul-24
Type=Plugin
Author=Hodges
Description=
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=tagcloud
Part=main
File=tagcloud
Hooks=header.tags
Tags=header.tpl:{tag}
Order=10
[END_SED_EXTPLUGIN]
==================== */

if (!defined('SED_CODE') || !defined('SED_PLUG')) { sed_diefatal('Wrong URL.'); }

$s = sed_import('s','G','ALP',3);
$plugin_title = "<a href=\"plug.php?e=tagcloud\">Tag Cloud</a>";
$plugin_subtitle = "A list of the most popular things on the site";

$plugin_body = "<div style=\"text-align:right;\">Sort: <a href=\"plug.php?e=tagcloud\">alphabetically</a> | by <a href=\"plug.php?e=tagcloud&amp;s=pop\">popularity</a></div><div style=\"margin:auto;width:80%;text-align:justify;\">";

$sql = sed_sql_query("SELECT page_title, page_cat FROM $db_pages WHERE page_state=0 AND page_cat NOT LIKE 'system' ");
while ($row = sed_sql_fetcharray($sql))
{
$tags[] = " ".$row['page_cat']." ".$row['page_title']." ";
}

$tags = implode('',$tags);
$key_array = explode(" ", $tags);

$value_array_1 = array_change_key_case($key_array, CASE_LOWER);
$value_array = array_count_values($value_array_1);

if ($s=="pop")
{
arsort($value_array);
}
else
{
ksort($value_array);
}

$max_size = 32;
$min_size = 12;

$max_qty = max(array_values($value_array));
$min_qty = min(array_values($value_array));

$spread = $max_qty - $min_qty;
if ($spread == 0)
{
$spread = 1;
}

$step = ($max_size - $min_size) / ($spread);

foreach ($value_array as $key => $value)
{
$key = strtolower($key);
if ($value==1)
{
unset($key);
}
$size = round($min_size + (($value - $min_qty) * $step));

$plugin_body .= "<a href=\"plug.php?e=search&amp;pre=".$key."\" style=\"font-size:".$size."px;\" title=\"".$value." things tagged with ".$key."\">".$key."</a> ";
}

$plugin_body .= "</div>";

$t-> assign(array(
"Tag" => $plugin_tagcloud));

?>
sambac?

Mahkum

Members


Online status

183 posts
http://hackturkiye.com
Pagerank: 4

Location: Turkey
Occupation: Pc-Donan?m
Age:

#12773   2008-01-25 14:01 GMT      
bu konuyu senin de dediğin gibi kaan bilir çünkü kendi sitesinde Ldu sistem Kullanıyor
Arkana bakmadan istikbaline ula?amass?n önce arkay? sa?lama al sonra gerisi gelir

ileti?im : by_kanunsuz@hackturkiye.org

?mhatimi Arayüzü http://rs168.rapidshare.com/files/89316776/imhatimi.rar indrin

kript0tr

Members


Online status

19 posts

Location: Turkey
Occupation:
Age:

#12856   2008-01-25 17:08 GMT      

Eklentinin seditio versiyonunu Kaan yayinlanmisti zaten, arama yaparsaniz görürsünüz

http://www.seditio-tr.com/son1313-meta-tag-olusturma-sistemi-free-plugin-last.html

samba

Members


Online status

64 posts

Location: Turkey
Occupation:
Age:

#12857   2008-01-25 17:45 GMT      
ben Metatag eklentisinden bahsetmiyorum
sambac?

Dvdbil

Administrator


Online status

2,253 posts
http://www.seditio-tr.com
Pagerank: 3

Location: Turkey istanbul
Occupation: Web Site(ler) İşletmeciliği
Age: 28

#12878   2008-01-25 18:07 GMT      
Hata nedir ?
Sitelerinize profesyonel anlamda hizmet verilir;

- Performans optimizasyonu,
- Üst düzey güvenlik yamaları,
- İsteğe bağlı eklentiler,
- Her çeşit bot (program, video, resim, arsiv, haber),
- Profesyonel görsel skin.

Tüm tasarım, kodlamalar ve optimizasyon Neocrome referansı ile tarafımca hazırlanmakta.
 
*************************İSTATİSTİKLER*************************
Müşterim olan danışmanlığını yaptığım toplam kişi sayısı: 23
Sadece Eklenti hazırladığım kişi sayısı: 22
Uygulama yaptığım toplam site sayısı: 39
-------------------------------------------------
Müşterinin isteği doğrultusunda hazırladığım;
- eklenti sayısı: 46
- skin sayısı: 8
- bot sayısı: 18
- özel güvenlik yamaları: 21
- Sql performans optimizasyonu: 13 (yüksek hitli siteler için)
- Portal genel cache ve materyal optimizasyonu: 15
***************************************************************

Kaan

Moderators


Online status

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

Location: Turkey
Occupation: Destek
Age: 26

#12886   2008-01-25 21:07 GMT      
Quote
samba :
ben Metatag eklentisinden bahsetmiyorum



Tagclout un aynısı metatag da ben adını degiştirdim hiç bir farkı yok metatag la tagclout eklentisin sadece isim farkı var.

samba

Members


Online status

64 posts

Location: Turkey
Occupation:
Age:

#14402   2008-02-04 11:34 GMT      
hata:
siteadi
2008-01-31 22:14
Fatal error : Wrong URL.
sambac?

Dvdbil

Administrator


Online status

2,253 posts
http://www.seditio-tr.com
Pagerank: 3

Location: Turkey istanbul
Occupation: Web Site(ler) İşletmeciliği
Age: 28

#14463   2008-02-04 13:18 GMT      
Hooks olarak index.tags ile test et..
Sitelerinize profesyonel anlamda hizmet verilir;

- Performans optimizasyonu,
- Üst düzey güvenlik yamaları,
- İsteğe bağlı eklentiler,
- Her çeşit bot (program, video, resim, arsiv, haber),
- Profesyonel görsel skin.

Tüm tasarım, kodlamalar ve optimizasyon Neocrome referansı ile tarafımca hazırlanmakta.
 
*************************İSTATİSTİKLER*************************
Müşterim olan danışmanlığını yaptığım toplam kişi sayısı: 23
Sadece Eklenti hazırladığım kişi sayısı: 22
Uygulama yaptığım toplam site sayısı: 39
-------------------------------------------------
Müşterinin isteği doğrultusunda hazırladığım;
- eklenti sayısı: 46
- skin sayısı: 8
- bot sayısı: 18
- özel güvenlik yamaları: 21
- Sql performans optimizasyonu: 13 (yüksek hitli siteler için)
- Portal genel cache ve materyal optimizasyonu: 15
***************************************************************

samba

Members


Online status

64 posts

Location: Turkey
Occupation:
Age:

#14465   2008-02-04 13:22 GMT      

aynı sorun yine var
sambac?

Kaan

Moderators


Online status

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

Location: Turkey
Occupation: Destek
Age: 26

#14471   2008-02-04 13:26 GMT      
O Eklenti index de çalışmıyor standalone çalışıyor yani etiketsiz.

samba

Members


Online status

64 posts

Location: Turkey
Occupation:
Age:

#14472   2008-02-04 13:27 GMT      
bu sitede çalışıyor ama
sambac?

Kaan

Moderators


Online status

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

Location: Turkey
Occupation: Destek
Age: 26

#14473   2008-02-04 13:31 GMT      
Onla burdakinin bir alakası yok. Burdaki gibi yapmak istiyorsan kendin yapıcaksın.

Dvdbil

Administrator


Online status

2,253 posts
http://www.seditio-tr.com
Pagerank: 3

Location: Turkey istanbul
Occupation: Web Site(ler) İşletmeciliği
Age: 28

#14475   2008-02-04 13:42 GMT      


kodlarıda hiç incelemedim, kaan'ın dediği gibi standalone kodlarda hook kullanamazsın.
Sitelerinize profesyonel anlamda hizmet verilir;

- Performans optimizasyonu,
- Üst düzey güvenlik yamaları,
- İsteğe bağlı eklentiler,
- Her çeşit bot (program, video, resim, arsiv, haber),
- Profesyonel görsel skin.

Tüm tasarım, kodlamalar ve optimizasyon Neocrome referansı ile tarafımca hazırlanmakta.
 
*************************İSTATİSTİKLER*************************
Müşterim olan danışmanlığını yaptığım toplam kişi sayısı: 23
Sadece Eklenti hazırladığım kişi sayısı: 22
Uygulama yaptığım toplam site sayısı: 39
-------------------------------------------------
Müşterinin isteği doğrultusunda hazırladığım;
- eklenti sayısı: 46
- skin sayısı: 8
- bot sayısı: 18
- özel güvenlik yamaları: 21
- Sql performans optimizasyonu: 13 (yüksek hitli siteler için)
- Portal genel cache ve materyal optimizasyonu: 15
***************************************************************

Kaan

Moderators


Online status

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

Location: Turkey
Occupation: Destek
Age: 26

#14477   2008-02-04 14:03 GMT      
Quote
Dvdbil :

kodlarıda hiç incelemedim, kaan'ın dediği gibi standalone kodlarda hook kullanamazsın.



Eklemesini bilirsen çalışır tecrübe meselesi
> 1 <

Benzer konular (Similar topics) #BETA

KonularMesajlarSon YazarGüncelleme
yardım forum mesajı hatası ile ilgili yardım2Dvdbil440 Gün
Yardım2MUST!214 Gün
yardım!2WoMaNiZeR377 Gün
yardım!!!4Caglar12117 Gün
yardım6phpcoding464 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] [236] [237] [238] [239] [240] [241] [242] [243] [244] [245] [246] [247] [248] [249] [250] [251] [252] [253] [254] [255] [256] [257] [258] [259] [260] [261] [262] [263] [264] [265] [266] [267] [268] [269] [270] [271] [272] [273] [274] [275] [276] [277]