<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress Türkiye Forumları Etiket: karakter</title>
<link>http://www.wordpress-tr.com/forum/</link>
<description>WordPress Türkiye Forumları Etiket: karakter</description>
<language>en</language>
<pubDate>Fri, 16 May 2008 11:38:00 +0000</pubDate>

<item>
<title>futureng konu: "k2 temasında ilginç bir karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/5511#post-27609</link>
<pubDate>Çar, 30 Apr 2008 08:45:33 +0000</pubDate>
<dc:creator>futureng</dc:creator>
<guid isPermaLink="false">27609@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Ençok kullanılan temalardan gimptr.com sitem için k2 teması kullanıyorum. Sorun şu: Sitede herhangi bir kutucuğa metin girdiğimde türkçe karakterleri saçma çıkartıyor. fakat ilgili kutucuğa girdiğim bilgiyi onayladıktan sonra sayfayı refresh ettiğimde düzeliyor. Bu durumu çözemedim.
&#60;/p&#62;</description>
</item>
<item>
<title>Liceneus konu: "php dosyalarda Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/1177#post-25423</link>
<pubDate>Cts, 15 Mar 2008 12:36:41 +0000</pubDate>
<dc:creator>Liceneus</dc:creator>
<guid isPermaLink="false">25423@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Merhaba,&#60;/p&#62;
&#60;p&#62;Wp 2.3.3 Tr kullanıyorum ve ingilizce olarak hazırlanmış bir temayı Türkçeleştirdim. Düzenleme sonrasında dosyaları UTF-8 olarak kaydettim. Bu işlem sonucunda Türkçe karakterler düzgün görüntüleniyor, fakat tarayıcı sorunu yaşanıyor. Firefox üzerinde sorun yaşanmazken IE ile açtığım zaman bütün sayfa bileşenleri kayıyor (sidebar'da olması gerekenler sayfanın en altında, footer'ın ad altında görüntüleniyor). Charset konusunda bir bilgim yok, ama anladığım kadarıyla temanın default olarak belirlenen charset'ini UTF-8 olarak ayarlamam gerektiğini düşünüyorum, böyle bir şey mümkün mü; bunu da bilmiyorum.
&#60;/p&#62;</description>
</item>
<item>
<title>canelleri konu: "Temada Türkçe Karakter Sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/567#post-23976</link>
<pubDate>Cts, 16 Feb 2008 13:53:25 +0000</pubDate>
<dc:creator>canelleri</dc:creator>
<guid isPermaLink="false">23976@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Arkadaşlar güncelleme sırasında ben de sorun yaşadım.&#60;br /&#62;
Şöyle bi script ile çözdüm meseleyi.&#60;br /&#62;
Herşeyin yedeğini almayı ihmal etmeyin.&#60;br /&#62;
aldığınız sql yedeğini ansiiye bu script ile çevirin.&#60;br /&#62;
sonra yeni yüklediğiniz wp ye uygulayın.&#60;/p&#62;
&#60;p&#62;Ben burda uyguladım. Allah'a şükür sorun düzeldi.&#60;br /&#62;
&#60;a href=&#34;http://www.haberklik.com&#34;&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
/*&#60;br /&#62;
UTF ile kodlanmış veritabanı dosyasını ansiiye çevirir.&#60;br /&#62;
wordpress güncellemesine yaşadığım problemi gidermek için geliştirdim.&#60;/p&#62;
&#60;p&#62;A.Kadir YILMAZ&#60;br /&#62;
&#60;a href=&#34;http://www.haberklik.com&#34; rel=&#34;nofollow&#34;&#62;http://www.haberklik.com&#60;/a&#62;&#60;br /&#62;
*/&#60;br /&#62;
$utfveritabani=&#34;db.sql&#34;;&#60;br /&#62;
$ansiiveritabani=&#34;db_ansii.sql&#34;;&#60;br /&#62;
file_put_contents($ansiiveritabani, utftoansiii(file_get_contents($utfveritabani)));&#60;br /&#62;
echo &#34;&#38;lt;br/&#38;gt;\ntamamdır.&#34;;&#60;br /&#62;
function utftoansiii($metin)&#60;br /&#62;
{&#60;br /&#62;
    $enharf = array(&#34;ü&#34; , &#34;ğ&#34; , &#34;ı&#34; , &#34;ş&#34; , &#34;ç&#34; , &#34;ö&#34; , &#34;Ü&#34; , &#34;Ğ&#34; , &#34;I&#34; , &#34;Ş&#34; , &#34;Ç&#34; , &#34;Ö&#34;, &#34;''&#34;, &#34;''&#34;);&#60;br /&#62;
    $trharf = array(&#34;Ã¼&#34;, &#34;ÄŸ&#34;, &#34;Ä±&#34;, &#34;ÅŸ&#34;, &#34;Ã§&#34;, &#34;Ã¶&#34;, &#34;Ãœ&#34;, &#34;Ä?&#34;, &#34;Ä°&#34;, &#34;Å?&#34;, &#34;Ã‡&#34;, &#34;Ã–&#34;, &#34;â€™&#34;, '&#38;#8217;');&#60;br /&#62;
    return str_replace($trharf, $enharf, $metin);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#60;/code&#62;&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>seyyahayati konu: "php dosyalarda Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/1177#post-21981</link>
<pubDate>Cum, 18 Jan 2008 14:30:28 +0000</pubDate>
<dc:creator>seyyahayati</dc:creator>
<guid isPermaLink="false">21981@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;merhabalarrrrrrr&#60;/p&#62;
&#60;p&#62;acemi yim şu olayı benim anlayacağım tarzda anlatırsanız sevinirim :)&#60;br /&#62;
&#60;strong&#62;bende her şey gayet normal ama yazılarım da ve sayfa yazılarında türkçe karakterler yerine ?    çıkıyor wp türkçe herşey türkçe&#60;/strong&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>heytbecom konu: "Tema'ya üçüncü bir sütun eklemek istiyorum"</title>
<link>http://www.wordpress-tr.com/forum/topic/4186#post-21702</link>
<pubDate>Cum, 11 Jan 2008 23:13:13 +0000</pubDate>
<dc:creator>heytbecom</dc:creator>
<guid isPermaLink="false">21702@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Bana sitemden ve iletişim formundan mesaj yollamışsınız ama temayı ben yapmadığım için üzerinde uğraşmak gerekiyor. (Feel the freedom) Benim şu an için bunu yapmam mümkün değil.&#60;/p&#62;
&#60;p&#62;* şu anda adresteki temaya bakıyorum başka bir tema var ve sürekli değişiyor. Ayrıca türkçe olmadığını belirtmişsiniz. Benim türkçeleştidiğim temalarda sorun varsa söyleyin hemen düzeltelim.&#60;/p&#62;
&#60;p&#62;* ayrıca 3 sütunlu ve 3.stuna ihtiyaç duymadan kullanılabilecek o kadar çok tema mevcutki seç beğen al. Yeterki araştırmayı - size uygun olan temayı bulmayı amaçlayın..
&#60;/p&#62;</description>
</item>
<item>
<title>SeNDeNKaLaN konu: "Tema'ya üçüncü bir sütun eklemek istiyorum"</title>
<link>http://www.wordpress-tr.com/forum/topic/4186#post-21682</link>
<pubDate>Cum, 11 Jan 2008 16:30:17 +0000</pubDate>
<dc:creator>SeNDeNKaLaN</dc:creator>
<guid isPermaLink="false">21682@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Merhaba Arkadaşlar Öncelikle böyle güzel bir destek forumu kurduğunuz için sizlere teşekkür etmeden söze başlamak nankörlük olur.. :)&#60;/p&#62;
&#60;p&#62;Arkadaşlar elimde bir projede kullanmak için heveslendiğim bir tema var &#60;a href=&#34;http://www.tekhayalim.net/tema.rar&#34;&#62;temayı bu linkden indirebilirsiniz.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Sıkıntım şudur ki&#60;br /&#62;
Tema 2 Sütunlu ve ben bir sol sütun daha açmak istiyorum?&#60;br /&#62;
Bir diğer sorunda tema ne yaptıysam Türkçe karakterleri göstermiyor.&#60;/p&#62;
&#60;p&#62;Şimdiden herkese teşekkür ediyorum.
&#60;/p&#62;</description>
</item>
<item>
<title>erne konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21672</link>
<pubDate>Cum, 11 Jan 2008 02:27:04 +0000</pubDate>
<dc:creator>erne</dc:creator>
<guid isPermaLink="false">21672@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;eylul artık botnet saldırısına önlem alan serverlar war. softlayer.com mesela. cisco firewall olanlar.
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21626</link>
<pubDate>Per, 10 Jan 2008 06:13:35 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21626@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Yardımlarınız için çok teşekkür ederim arkadaşlar.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21616</link>
<pubDate>Çar, 09 Jan 2008 20:03:28 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">21616@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Bot saldısına alınacak önlem yok gibi.&#60;/p&#62;
&#60;p&#62;wp-config.php en az 644 olmalı.&#60;/p&#62;
&#60;p&#62;Başka güvenlik &#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/3837?replies=16&#34;&#62;önlemleri &#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21615</link>
<pubDate>Çar, 09 Jan 2008 19:29:23 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21615@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Peki saldırılara karşı alabileceğim önlemler neler?&#60;/p&#62;
&#60;p&#62;Mesela hangi dosya ve klasörlerin chmod ayarlarını yapayım?&#60;br /&#62;
Yada chmod ayarlarından başka güvenlik önemleri neler olabilir?
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21610</link>
<pubDate>Çar, 09 Jan 2008 19:04:14 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">21610@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Dosyalar bozulmuş olabilir temayı tekrar yollayın.
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21601</link>
<pubDate>Çar, 09 Jan 2008 16:23:49 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21601@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Hayır taşıma yapmadm. Eklenti kurmadım.&#60;/p&#62;
&#60;p&#62;Saldırı sanmıyorum ama diyelim ki oldu. Ben bu dertten nasıl kurtulabilirim? Nasıl düzeltebilirim bu sorunu arkadaşlar?
&#60;/p&#62;</description>
</item>
<item>
<title>KnbykL konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21566</link>
<pubDate>Çar, 09 Jan 2008 00:48:15 +0000</pubDate>
<dc:creator>KnbykL</dc:creator>
<guid isPermaLink="false">21566@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Son zamanlarda kurduğunuz eklentiler yüzünden yavaşlıyor olabilir. Kurmadıysanız saldırıya maruz kalıyor olabilirsiniz. Başka bir hosttan mı taşıdınız buraya ? Taşıma işlemi yaptıysanız genelde böyle hatalar alabilirsiniz.
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21565</link>
<pubDate>Sal, 08 Jan 2008 23:39:36 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21565@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Ayrıca genel olarak server gayet hızlı çalışmasına rağmen blog feci şekilde yavaş çalışıyor nedense. İlk kurduğum 2-3 gün öyle değildi bu iki sorun da bugün ortaya çıktı birdenbire.&#60;/p&#62;
&#60;p&#62;Bakın lakerstr.com ve lakerstr.com/forum gayet hızlı ve sorunsuz ama &#60;a href=&#34;http://haber.lakerstr.com&#34; rel=&#34;nofollow&#34;&#62;http://haber.lakerstr.com&#60;/a&#62; feci yavaş.
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21564</link>
<pubDate>Sal, 08 Jan 2008 23:28:30 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21564@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;index.php veya header.php'ye bakayım da hangi ne tür kodlara bakıcam?&#60;/p&#62;
&#60;p&#62;index ve header'ların içinde &#34;utf&#34; ve &#34;encode&#34; kelimelerini tarattım ilgili birşeyler bulamadım.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21563</link>
<pubDate>Sal, 08 Jan 2008 23:19:00 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">21563@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Hocam ie'de eyvallah onda görüyorum ama yazının içinde değil.. kategorilerde yani index.php dosyasını kullan yerde başka yerde bende sorun görünmüyor..
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21562</link>
<pubDate>Sal, 08 Jan 2008 23:17:17 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21562@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Benim tarayıcım da Mozilla, başkasını kullanmam zaten.&#60;/p&#62;
&#60;p&#62;Tema değiştirince de aynı şey devam ediyo.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21561</link>
<pubDate>Sal, 08 Jan 2008 22:59:39 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">21561@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Hımm tarayıcı farkı ve firefox üstünlüğü =)&#60;/p&#62;
&#60;p&#62;İe 'de durum ciddi.. Sorun basit.. Temanızın index.php, header.php  dosyalarının birinde yüksek olasalılıkla bir utf-8 sorunu var yada başında geçersiz bi kod. notepat++ ile bir bakın derim.. yada yazma izni verip temanızı wordpress kendi tema editöründen tekrar kayıt edin.. Yedekleyin birde.. &#60;/p&#62;
&#60;p&#62;Not: Tema değiştirincede devam ediyor mu?
&#60;/p&#62;</description>
</item>
<item>
<title>Cassano18 konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21559</link>
<pubDate>Sal, 08 Jan 2008 22:50:16 +0000</pubDate>
<dc:creator>Cassano18</dc:creator>
<guid isPermaLink="false">21559@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;İyi olur. Çünkü hala sorduğum bi sürü insanda sorun var.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Türkçe karakter sorunu"</title>
<link>http://www.wordpress-tr.com/forum/topic/4165#post-21558</link>
<pubDate>Sal, 08 Jan 2008 22:44:46 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">21558@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Kamera görüntüsüde yollaya bilirim =)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
