<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Turkish characters fix (url modifcation)</title>
		<link>https://www.cotonti.com</link>
		<description>Last topic posts</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Thu, 09 Apr 2026 18:11:27 -0000</pubDate>

		<item>
			<title>Gökhan YILDIZ</title>
			<description><![CDATA[Evet denedim. Modifikasyonu yeni kurulan bir cotonti üzerinde denediğiniz zaman herhangi bir hata ile karşılaşmanız mümkün değil.]]></description>
			<pubDate>Thu, 18 Feb 2010 07:36:07 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post23010]]></link>
		</item>
		<item>
			<title>TeknoGroup</title>
			<description><![CDATA[sorun benden kaynaklanıyordur o halde yanlış anlamayın ama bu kodları siz denedinizmi]]></description>
			<pubDate>Thu, 18 Feb 2010 04:57:25 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post23005]]></link>
		</item>
		<item>
			<title>Gökhan YILDIZ</title>
			<description><![CDATA[Aynı uygulamayı ben yaptığımda sorun yaşamadım. Lütfen en baştan kontrol ederek yapınız.]]></description>
			<pubDate>Tue, 16 Feb 2010 19:29:38 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22956]]></link>
		</item>
		<item>
			<title>TeknoGroup</title>
			<description><![CDATA[orayı uygulazım zaten url deki türkçe karakterleri kaldırmak için<br />
<br />
<pre class="code">$text = str_replace( &quot;ş&quot;, &quot;s&quot;, $text);</pre>
<br />
kodlarını eklesemde görmüyor]]></description>
			<pubDate>Tue, 16 Feb 2010 10:57:10 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22953]]></link>
		</item>
		<item>
			<title>Gökhan YILDIZ</title>
			<description><![CDATA[<a href="http://www.cotonti.com/forums.php?m=posts&amp;p=10670">http://www.cotonti.com/forums.php?m=posts&amp;p=10670</a> bu sayfadaki yönergeleri uygulayın.]]></description>
			<pubDate>Tue, 16 Feb 2010 08:57:35 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22951]]></link>
		</item>
		<item>
			<title>TeknoGroup</title>
			<description><![CDATA[@Gökhan YILDIZ<br />
<br />
değişen birşey olmadı malesef]]></description>
			<pubDate>Tue, 16 Feb 2010 07:33:02 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22949]]></link>
		</item>
		<item>
			<title>Gökhan YILDIZ</title>
			<description><![CDATA[sufficient for a solution to the following<br />
<br />
open functions.custom.php or functions.php<br />
<br />
find:<br />
<br />
<div class="highlight"><pre class="php">if (!defined('SED_CODE')) { die('Wrong URL.'); }</pre></div>
<br />
add after:<br />
<br />
<div class="highlight"><pre class="php">
function makesafe($text)
{
	//$text = preg_replace(&quot;#&amp;\#(&#091;0-9&#093;*);#ie&quot;,&quot;_&quot;,$text);
	$text = html_entity_decode($text);
	$text = str_replace(&quot; / &quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot;'&quot;,&quot;&quot;,$text);
	$text = str_replace(&quot;\&quot;&quot;,&quot;&quot;,$text);
	$text = str_replace(&quot;/&quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot;'&quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot; - &quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot;-&quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot; &quot;,&quot;_&quot;,$text);
	$text = str_replace( &quot;ç&quot;, &quot;c&quot;, $text);
	$text = str_replace( &quot;Ç&quot;, &quot;c&quot;, $text);
	$text = str_replace( &quot;ğ&quot;, &quot;g&quot;, $text);
	$text = str_replace( &quot;Ğ&quot;, &quot;g&quot;, $text);
	$text = str_replace( &quot;ı&quot;, &quot;i&quot;, $text);
	$text = str_replace( &quot;İ&quot;, &quot;i&quot;, $text);
	$text = str_replace( &quot;ö&quot;, &quot;o&quot;, $text);
	$text = str_replace( &quot;Ö&quot;, &quot;o&quot;, $text);
	$text = str_replace( &quot;ş&quot;, &quot;s&quot;, $text);
	$text = str_replace( &quot;Ş&quot;, &quot;s&quot;, $text);
	$text = str_replace( &quot;ü&quot;, &quot;u&quot;, $text);
	$text = str_replace( &quot;Ü&quot;, &quot;u&quot;, $text);
	$text = str_replace( &quot;&amp;&quot;, &quot;and&quot;, $text);
	$text = str_replace( &quot;%&quot;, &quot;Percent&quot;, $text);
	$text = ereg_replace(&quot;&#091;^A-Za-z0-9_-&#093;&quot;, &quot;&quot;, $text);
	$text = str_replace(&quot;____&quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot;___&quot;,&quot;_&quot;,$text);
	$text = str_replace(&quot;__&quot;,&quot;_&quot;,$text);
	$text = strtolower($text);
	return $text;
}

</pre></div>
<br />
save and upload.]]></description>
			<pubDate>Fri, 15 Jan 2010 18:13:09 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22127]]></link>
		</item>
		<item>
			<title>fedai</title>
			<description><![CDATA[Doc: <a href="http://www.cotonti.com/docs/en/admin/url_modification">http://www.cotonti.com/docs/en/admin/url_modification</a><br />
<br />
expl: site.com/docs/ölçüm<br />
 the url Turkish characters: ö,ç,ü Turkish characters instead ö=o,ç=c,ü=u fix, such as how do we do]]></description>
			<pubDate>Fri, 15 Jan 2010 15:38:27 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5160&d=0#post22125]]></link>
		</item>
	</channel>
</rss>