Arkadaşlar 1-üye imzasını değiştiremiyor.Kimliği değiştir butonu yok .
üye imzası bülümünde birsürü kodlar var.kodları silmemize rağmen kimliği değiştiremiyoruz.
üyeyi silmeden bu durumu düzeltebilrimiyim.(bu sorun sadece bir üyede var)
tek bir kişide olması garip

Profile.template.php dosyanızı yenileyin. Olmazsa Profile.php dosyanızıda yenilersiniz. Ne yaptınızda oldu bu olay? Sanırım bu konuda modifikasyonu yükledikten sonra oldu?
Üyenin imzasındaki kodlar:
<span class="smalltext">İzin verilen 350 karakter. Kalan: <span id="signatureLeft">350</span></span>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
function tick()
{
if (typeof(document.forms.creator) != "undefined")
{
calcCharLeft();
setTimeout("tick()", 1000);
}
else
setTimeout("tick()", 800);
}
function calcCharLeft()
{
var maxLength = 350;
var oldSignature = "", currentSignature = document.forms.creator.signature.value;
if (!document.getElementById("signatureLeft"))
return;
if (oldSignature != currentSignature)
{
oldSignature = currentSignature;
if (currentSignature.replace(/\r/, "").length > maxLength)
document.forms.creator.signature.value = currentSignature.replace(/\r/, "").substring(0, maxLength);
currentSignature = document.forms.creator.signature.value.replace(/\r/, "");
}
setInnerHTML(document.getElementById("signatureLeft"), maxLength - currentSignature.length);
}
setTimeout("tick()", 800);
// ]]></script>
</td>
</tr>
<tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr>
<tr>
<td width="40%"><b>Web site Başlığı: </b><div class="smalltext">Eğer aşağıda bir web adresi belirtmişseniz bu mutlaka eklenmelidir.</div></td>
<td><input type="text" name="websiteTitle" size="50" value="" /></td>
</tr><tr>
<td width="40%"><b>Web site Adresi: </b><div class="smalltext">Bu tam bir adres olmalıdır. (<b>http://</b> eklemelisiniz)</div></td>
<td><input type="text" name="websiteUrl" size="50" value="http://www...................." /></td>
</tr>
<tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr><tr>
<td align="right" colspan="2">
<input type="submit" value="Kimliği değiştir" />
<input type="hidden" name="sc" value="99a47556b4f83182f148411b1d55498b" />
<input type="hidden" name="userID" value="102" />
<input type="hidden" name="sa" value="forumProfile" />
</td>
</tr>
</table>
</td>
</tr>
</table>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var files = ["Actors/Brad_Pitt.jpg", "Actors/Bruce_Campbell.jpg", "Actors/Bruce_Willis.jpg", "Actors/Cameron_Diaz.jpg", "Actors/Charisma_Carpenter.jpg", "Actors/Christopher_Lambert.jpg", "Actors/Claudia_Schiffer.jpg", "Actors/David_Boreanaz.jpg", "Actors/David_Spade.jpg", "Actors/Denise_Richards.jpg", "Actors/Emilio_Estevez.jpg", "Actors/Eva_Habermann.jpg", "Actors/Freddie_Prinze_Jr.jpg", "Actors/Gwyneth_Paltrow.jpg", "Musicians/Alanis_Morissette.jpg", "Musicians/Avril_Lavigne.jpg", "Musicians/Bob_Marley.jpg", "Musicians/Britney_Spears.jpg", "Musicians/Cardigans.jpg", "Musicians/Christina_Aguilera.jpg", "Musicians/Dido.jpg", "Musicians/Eminem.jpg", "Musicians/Jewel.jpg", "Musicians/Jon_Bon_Jovi.jpg", "Musicians/Korn.jpg", "Musicians/Limp_Bizkit.jpg", "Musicians/Linkin_Park.jpg", "Musicians/Nirvana.jpg", "Musicians/No_Doubt.jpg", "Musicians/Queen.jpg", "Musicians/Shakira.jpg", "Musicians/U2.jpg"];
var avatar = document.getElementById("avatar");
var cat = document.getElementById("cat");
var selavatar = "";
var avatardir = "http://www.renklerinsesi.com/forum/avatars/";
var size = avatar.alt.substr(3, 2) + " " + avatar.alt.substr(0, 2) + String.fromCharCode(117, 98, 116);
var file = document.getElementById("file");
if (avatar.src.indexOf("blank.gif") > -1)
changeSel(selavatar);
else
previewExternalAvatar(avatar.src)
function changeSel(selected)
{
if (cat.selectedIndex == -1)
return;
if (cat.options[cat.selectedIndex].value.indexOf("/") > 0)
{
var i;
var count = 0;
file.style.display = "inline";
file.disabled = false;
for (i = file.length; i >= 0; i = i - 1)
file.options[i] = null;
for (i = 0; i < files.length; i++)
if (files[i].indexOf(cat.options[cat.selectedIndex].value) == 0)
{
var filename = files[i].substr(files[i].indexOf("/") + 1);
var showFilename = filename.substr(0, filename.lastIndexOf("."));
showFilename = showFilename.replace(/[_]/g, " ");
file.options[count] = new Option(showFilename, files[i]);
if (filename == selected)
{
if (file.options.defaultSelected)
file.options[count].defaultSelected = true;
else
file.options[count].selected = true;
}
count++;
}
if (file.selectedIndex == -1 && file.options[0])
file.options[0].selected = true;
showAvatar();
}
else
{
file.style.display = "none";
file.disabled = true;
document.getElementById("avatar").src = avatardir + cat.options[cat.selectedIndex].value;
document.getElementById("avatar").style.width = "";
document.getElementById("avatar").style.height = "";
}
}
function showAvatar()
{
if (file.selectedIndex == -1)
return;
document.getElementById("avatar").src = avatardir + file.options[file.selectedIndex].value;
document.getElementById("avatar").alt = file.options[file.selectedIndex].text;
document.getElementById("avatar").alt += file.options[file.selectedIndex].text == size ? "!" : "";
document.getElementById("avatar").style.width = "";
document.getElementById("avatar").style.height = "";
}
function previewExternalAvatar(src)
{
if (!document.getElementById("avatar"))
return;
var maxHeight = 125;
var maxWidth = 125;
var tempImage = new Image();
tempImage.src = src;
if (maxWidth != 0 && tempImage.width > maxWidth)
{
document.getElementById("avatar").style.height = parseInt((maxWidth * tempImage.height) / tempImage.width) + "px";
document.getElementById("avatar").style.width = maxWidth + "px";
}
else if (maxHeight != 0 && tempImage.height > maxHeight)
{
document.getElementById("avatar").style.width = parseInt((maxHeight * tempImage.width) / tempImage.height) + "px";
document.getElementById("avatar").style.height = maxHeight + "px";
}
document.getElementById("avatar").src = src;
}
// ]]></script>
</form>
</td>
</tr>
</table>
</div>
<div id="footerarea" style="text-align: center; padding-bottom: 1ex;">
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
function smfFooterHighlight(element, value)
{
element.src = smf_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
}
// ]]></script>
<table cellspacing="0" cellpadding="3" border="0" align="center" width="100%">
<tr>
<td width="28%" valign="middle" align="right">
<a href="http://www.mysql.com/" target="_blank"><img id="powered-mysql" src="http://www.renklerinsesi.com/forum/Themes/dilbermc-rc3/images/powered-mysql.gif" alt="MySQL ile Güçlendirildi" width="54" height="20" style="margin: 5px 16px;" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://www.php.net/" target="_blank"><img id="powered-php" src="http://www.renklerinsesi.com/forum/Themes/dilbermc-rc3/images/powered-php.gif" alt="PHP ile Güçlendirildi" width="54" height="20" style="margin: 5px 16px;" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
</td>
<td valign="middle" align="center" style="white-space: nowrap;">
<span class="smalltext" style="display: inline; visibility: visible; font-family: Verdana, Arial, sans-serif;"><a href="http://www.simplemachines.org/" title="Simple Machines Forum" target="_blank">Powered by SMF 1.1.1</a> |
<a href="http://www.simplemachines.org/about/copyright.php" title="Free Forum Software" target="_blank">SMF © 2006, Simple Machines LLC</a>
</span><br /> "floristDkT"
<br/><br/>
<span class="smalltext"></span>
</td>
<td width="28%" valign="middle" align="left">
<a href="http://validator.w3.org/check/referer" target="_blank"><img id="valid-xhtml10" src="http://www.renklerinsesi.com/forum/Themes/dilbermc-rc3/images/valid-xhtml10.gif" alt="XHTML 1.0 Geçerli!" width="54" height="20" style="margin: 5px 16px;" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"><img id="valid-css" src="http://www.renklerinsesi.com/forum/Themes/dilbermc-rc3/images/valid-css.gif" alt="CSS Geçerli!" width="54" height="20" style="margin: 5px 16px;" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<span style="float:right; margin-right:10px; font-size:70%;"><b>Dilber MC</b> Theme by <b><a href="http://www.harzem.com/themes/themes.php?theme=dilbermc;color=lightnavy" target="_blank">HarzeM</a></b></span>
</td>
</tr>
</table>
<span class="smalltext">Bu Sayfa 0.317 Saniyede 9 Sorgu ile Oluşturuldu</span>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var window_oldOnload = window.onload;
window.onload = smf_codeFix;
function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");
for (var i = codeFix.length - 1; i > 0; i--)
{
if (codeFix[i].currentStyle.overflow == "auto" && (codeFix[i].currentStyle.height == "" || codeFix[i].currentStyle.height == "auto") && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0) && (codeFix[i].offsetHeight != 0 || codeFix[i].className == "code"))
codeFix[i].style.height = (codeFix[i].offsetHeight + 36) + "px";
}
if (window_oldOnload)
{
window_oldOnload();
window_oldOnload = null;
}
}
// ]]></script>
</div>
</td></tr></table>
</div>
<div id="ajax_in_progress" class="ajax_in_progress" style="display: none;position: absolute;">Yükleniyor...</div>
</body></html>