<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>zoe.vc &#187; utf-8</title>
	<atom:link href="http://www.zoe.vc/tag/utf-8/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zoe.vc</link>
	<description>development &#38; freelancing blog</description>
	<lastBuildDate>Mon, 30 Jan 2012 07:03:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>TYPO3 und UTF-8 mySQL Datenbank</title>
		<link>http://www.zoe.vc/2009/typo3-und-utf-8-mysql-datenbank/</link>
		<comments>http://www.zoe.vc/2009/typo3-und-utf-8-mysql-datenbank/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 16:01:16 +0000</pubDate>
		<dc:creator>Alex (zoe.vc)</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[kodierung]]></category>
		<category><![CDATA[kollation]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://www.zoe.vc/?p=46</guid>
		<description><![CDATA[Manchmal ist es nötig, die Datenbank von Typo3 auf UTF-8 umzustellen, da man arabische Zeichen oder was auch immer speichern will, und wobei die Kollation der Datenbank latin1_swedish_ci, mit der sich Typo3 standardmäßig installiert, nicht taugt. Dazu habe ich diesen nützlichen Blogeintrag von Markus Giesen gefunden: Typo3 mySQL-Datenbank auf UTF-8 umstellen bzw. konvertieren Jedoch ist [...]]]></description>
			<content:encoded><![CDATA[<p>Manchmal ist es nötig, die Datenbank von Typo3 auf UTF-8 umzustellen, da man arabische Zeichen oder was auch immer speichern will, und wobei die Kollation der Datenbank <em>latin1_swedish_ci</em>, mit der sich Typo3 standardmäßig installiert, nicht taugt.</p>
<p>Dazu habe ich diesen nützlichen Blogeintrag von Markus Giesen gefunden: <a href="http://blog.markusgiesen.de/2007/07/29/typo3-mysql-datenbank-auf-utf-8-umstellen/">Typo3 mySQL-Datenbank auf UTF-8 umstellen bzw. konvertieren</a></p>
<p>Jedoch ist bei mir im Export nie die Kollation festgeschrieben, diesen Schritt konnte ich de facto überspringen. Auch hatte ich keinen phpMyAdmin, also mussten die Kommandos für die SQL-Konsole zum Anpassen der Kollation her:</p>
<p>Anzeigen der verfügbaren Kollationen auf dem Server:</p>
<pre class="sql"><span style="color: #993333; font-weight: bold;">SHOW</span> COLLATION
<span style="color: #993333; font-weight: bold;">SHOW</span> COLLATION <span style="color: #993333; font-weight: bold;">LIKE</span> <span style="color: #ff0000;">'utf%'</span></pre>
<p>Ändern der Kollation der aktuellen Datenbank:</p>
<pre class="sql"><span style="color: #993333; font-weight: bold;">ALTER</span> <span style="color: #993333; font-weight: bold;">DATABASE</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> COLLATE utf8_general_ci</pre>
<p>Und danach weiter nach Markus Giesens Anleitung verfahren und alles wird gut <img src='http://www.zoe.vc/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.zoe.vc/2009/typo3-und-utf-8-mysql-datenbank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony Latin &#8211; UTF-8 Problem</title>
		<link>http://www.zoe.vc/2008/symfony-latin-utf-8-problem/</link>
		<comments>http://www.zoe.vc/2008/symfony-latin-utf-8-problem/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 13:24:16 +0000</pubDate>
		<dc:creator>Alex (zoe.vc)</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[latin]]></category>
		<category><![CDATA[propel]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://www.zoe.vc/?p=37</guid>
		<description><![CDATA[I'm currently getting into the Symfony framework and I can definitly say that I like it. But as my site was finished after only some hours I had a problem concerning the display of special characters like the umlauts (ä, ö, ü) aso. I don't use a database created by SF/Propel but use an existing [...]]]></description>
			<content:encoded><![CDATA[<div class="jLanguage">
<ul>
<li><a href="?lan=english"><img alt="english" src="http://www.zoe.vc/wp-content/plugins/jLanguage/icons/en.png" /></a></li>
<li><a href="?lan=german"><img alt="german" src="http://www.zoe.vc/wp-content/plugins/jLanguage/icons/de.png" /></a></li>
</ul>
</div>
<p>I'm currently getting into the <a href="http://www.symfony-project.org/">Symfony framework</a> and I can definitly say that I like it.</p>
<p>But as my site was finished after only some hours I had a problem concerning the display of special characters like the umlauts (ä, ö, ü) aso. I don't use a database created by SF/Propel but use an existing one with latin1_* encoding (the default TYPO3 db encoding). Unfortunatly all umlauts where displayed as questionmark so I started finding an solution. The characters are fuzzy because they were not correctly returned by propel. I tried all configuration directives I found (setting the encoding of the connection to utf-8 aso) but nothing worked.<br />
Finally I found a snippet that fixes the problem for me: <a href="http://www.symfony-project.org/snippets/snippet/37">Setting UTF-8 for Propel with MySQL tables</a> and now everything is just fine!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zoe.vc/2008/symfony-latin-utf-8-problem/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

