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

Etiketler: eklenti türkçeleştirme

Author Message

Sender

Bilgili Üye


Online status

336 posts

Location: Turkey
Occupation:
Age:

#5085   2007-07-25 22:05 GMT      

contactus'ı iletişim yaptım ama hatalar oluor.Config flan cıkmıor bi kere yaptım cıktı ama mail girince cıkmıo fln bakabilirmisiniz bi?

http://rapidshare.com/files/45004715/iletisim.rar.html

Xiao

Moderators


Online status

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

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

#5091   2007-07-26 10:32 GMT      
iletisim.php yi bununla değiştir.
Code:
<?PHP

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

[BEGIN_LDU]
File=plugins/extended/iletisim/iletisim.php
Version=102
Updated=2006-apr-24
Type=Plugin
Author=Neocrome
Description=
[END_LDU]

[BEGIN_LDU_EXTPLUGIN]
Code=iletisim
Part=main
File=iletisim
Hooks=standalone
Tags=
Minlevel=0
Order=10
[END_LDU_EXTPLUGIN]

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

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

$a = cv('a','P','ALP');
$recipient = cv('recipient','P','INT');
$subject = cv('subject','P','INT');
$message = cv('message','P','TXT');
if (empty($message)) { $message = cv('message','G','TXT'); }
$name = cv('name','P','STX');
$email = cv('email','P','STX');
$mailverify  = cv('mailverify','P','TXT');

$plugin_title = $L['plu_title'];


if ($a=="send") {

if (!is_numeric($recipient) || !is_numeric($subject) || empty($message) || empty($name) || empty($email))
{ $error = $L['plu_empty']."<br />\n"; }

if (!ereg("([[:alnum:]\.\-]+)(\@[[:alnum:]\.\-]+\.+)", $email))
{ $error .= $L['plu_wrongemail']."<br />\n"; }

require("inc/php-captcha.inc.php");

if (!PhpCaptcha::Validate($mailverify))
{
$error .= $L['plu_wrongimg']."<br />
}

if (empty($error))
{

                ldu_shieldprotect();
$cfgrecipients = explode(";", $cfg['plugin']['iletisim']['email']);
$rectr = trim($cfgrecipients[$recipient]);
$cfgsubjects = explode(";", $cfg['plugin']['iletisim']['subjects']);
$subrt = trim($cfgsubjects[$subject]);

$headers = ("From: ".$name." <".$email.">\n"."Reply-To: <".$email.">\n"."Content-Type: text/plain; charset=".$cfg['charset']."\n");
$body = $L['plu_notice']." ".$name."\n";
$body .= $L['plu_message'].": \n\n".$message;
ldu_mail($rectr, $subrt, $body, $headers);

$ok = $L['plu_ok'];
unset($recipient, $subject, $message, $name, $email);
ldu_shield_update(60, "New message");

}

}

if (!empty($error)) { $plugin_body .= "<span style=\"color: #FF0000;\">".$error."</span>"; }
if (!empty($ok)) { $plugin_body .= "<span>".$ok."</span>"; }

$plugin_body .= "<form action=\"plug.php?e=iletisim\" method=\"post\">\n";
$plugin_body .= "<table class=\"cells\">";
$plugin_body .= "<tr><td>".$L['plu_recipient'].": </td><td>";

//Build recipients array and selectbox

$cfgrecipients = explode(";", $cfg['plugin']['iletisim']['email']);
$plugin_body .= "<select name=\"recipient\">\n";
$iii=0;
foreach($cfgrecipients as $x) {
if (!empty($x)) {
$recipients[$iii] = trim($x);
$whatdel = strrchr($recipients[$iii], "<");
$recipients[$iii] = str_replace($whatdel, "", $recipients[$iii]);
$recipients[$iii] = trim($recipients[$iii]);
if ($iii==$recipient || (empty($recipient) && $iii==0)) {
$plugin_body .= "<option value=\"".$iii."\" selected=\"selected\">".$recipients[$iii]."</option>\n";
} else {
$plugin_body .= "<option value=\"".$iii."\">".$recipients[$iii]."</option>\n";
}
$iii++;
}
}
$plugin_body .= "</select>\n";

$plugin_body .= "</td></tr>";
$plugin_body .= "<tr><td>".$L['plu_subject'].": </td><td>";

//Build subjects array and selectbox

$cfgsubjects = explode(";", $cfg['plugin']['iletisim']['subjects']);
$plugin_body .= "<select name=\"subject\">\n";
$iii=0;
foreach($cfgsubjects as $x) {
if (!empty($x)) {
$subjects[$iii] = trim($x);
if ($iii==$subject || (empty($subject) && $iii==0)) {
$plugin_body .= "<option value=\"".$iii."\" selected=\"selected\">".$subjects[$iii]."</option>\n";
} else {
$plugin_body .= "<option value=\"".$iii."\">".$subjects[$iii]."</option>\n";
}
$iii++;
}
}
$plugin_body .= "</select>\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td>".$L['plu_sendername'].": </td><td>\n";
$inname = (empty($name)) ? $usr['name'] : ldu_cc($name);
$plugin_body .= "<input type=\"text\" name=\"name\" value=\"".$inname."\" size=\"32\" maxlength=\"64\" class=\"text\" />\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td>".$L['plu_sendermail'].": </td><td>\n";
$inemail = (empty($email)) ? $usr['profile']['user_email'] : ldu_cc($email);
$plugin_body .= "<input type=\"text\" name=\"email\" value=\"".$inemail."\" size=\"32\" maxlength=\"64\" class=\"text\" />\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td>".$L['plu_message'].": </td><td>\n";
$plugin_body .= "<textarea cols=\"48\" rows=\"8\" name=\"message\">".ldu_cc($message)."</textarea>\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td>".$L['plu_imgverify'].": </td><td>\n";
$plugin_body .= "<img src='plugins/extended/iletisim/inc/captcha.php' width='200' height='60' alt='CAPTCHA'>\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td>".$L['plu_mailverify'].": </td><td>\n";
$plugin_body .= "<input name=\"mailverify\" type=\"text\" id=\"mailverify\" size=\"10\" maxlength=\"6\">\n";
$plugin_body .= "</td></tr>\n";

$plugin_body .= "<tr><td colspan=\"2\" align=\"center\">\n";
$plugin_body .= "<input type=\"hidden\" name=\"a\" value=\"send\" />\n";
$plugin_body .= "<input type=\"submit\" class=\"submit\" value=\"".$L['plu_send']."\" />\n";
$plugin_body .= "</td></tr>\n";
$plugin_body .= "</table>\n";
$plugin_body .= "</form>\n";

?>
Haziran 2008 Seditio Site Yar??mas? >> http://www.seditione.com

Sender

Bilgili Üye


Online status

336 posts

Location: Turkey
Occupation:
Age:

#5095   2007-07-26 12:19 GMT      

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING

62 satır yüzünden su hatayı veriyor.

Xiao

Moderators


Online status

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

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

#5096   2007-07-26 12:34 GMT      
bana orjinal eklentiyi yolla!
Haziran 2008 Seditio Site Yar??mas? >> http://www.seditione.com

Sender

Bilgili Üye


Online status

336 posts

Location: Turkey
Occupation:
Age:

#5097   2007-07-26 12:42 GMT      

Xiao

Moderators


Online status

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

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

#5098   2007-07-26 13:13 GMT      
Haziran 2008 Seditio Site Yar??mas? >> http://www.seditione.com

Sender

Bilgili Üye


Online status

336 posts

Location: Turkey
Occupation:
Age:

#5100   2007-07-26 15:01 GMT      
saolsın math1ens olmus ama yazdıgım mail'e iletiyi yollamıyor

This post was edited by Sender (2007-07-26 15:30 GMT, 439 Gün ago)

Xiao

Moderators


Online status

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

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

#5103   2007-07-26 17:11 GMT      
Quote
Sender :
saolsın math1ens olmus ama yazdıgım mail'e iletiyi yollamıyor


php den pek fazla anlamadığım için bu konuda yardımcı olamicam.Dvdbil i beklemeni tavsiye ederim...
Haziran 2008 Seditio Site Yar??mas? >> http://www.seditione.com

Dvdbil

Administrator


Online status

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

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

#5104   2007-07-26 17:34 GMT      

Herhangi bir hata vermiyorsa, mail sunucusunda bir sorun vardır yada *hotmail gibi adreslere gönderiyorsan blacklist'te olabilir sunucu ip..
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ı: 21
Uygulama yaptığım toplam site sayısı: 38
-------------------------------------------------
Müşterinin isteği doğrultusunda hazırladığım;
- eklenti sayısı: 44
- skin sayısı: 8
- bot sayısı: 15
- özel güvenlik yamaları: 21
- Sql performans optimizasyonu: 13 (yüksek hitli siteler için)
- Portal genel cache ve materyal optimizasyonu: 15
***************************************************************

Seditiocu

Members


Online status

14 posts
http://www.ultima-strike.com
Pagerank: 2

Location: Cyprus
Occupation:
Age: 17

#26783   2008-05-16 12:29 GMT      
Linkler Kirık :S
> 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] [208] [209] [210] [211] [212] [213] [214] [215] [216] [217] [218] [219] [220] [221] [222] [223] [224] [225] [226] [227]