<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — *help* How to change collation??]]></title>
		<link>https://punbb.informer.com/forums/topic/18204/help-how-to-change-collation/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/18204/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in *help* How to change collation??.]]></description>
		<lastBuildDate>Thu, 07 Feb 2008 13:52:16 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: *help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/109082/#p109082</link>
			<description><![CDATA[<p>Empty those tables and rebuild the search index.</p>]]></description>
			<author><![CDATA[null@example.com (elbekko)]]></author>
			<pubDate>Thu, 07 Feb 2008 13:52:16 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/109082/#p109082</guid>
		</item>
		<item>
			<title><![CDATA[Re: *help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/109081/#p109081</link>
			<description><![CDATA[<p>Thanks! It works now.. The only row that I cant change is search_words/word</p><div class="codebox"><pre><code>ALTER TABLE `search_words` CHANGE `word` `word` VARCHAR( 20 ) CHARACTER SET utf8 COLLATE utf8_swedish_ci NOT NULL

MySQL: Documentation
#1062 - Duplicate entry &#039;prevoyance&#039; for key 1</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (staffanl)]]></author>
			<pubDate>Thu, 07 Feb 2008 13:46:03 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/109081/#p109081</guid>
		</item>
		<item>
			<title><![CDATA[Re: *help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/108456/#p108456</link>
			<description><![CDATA[<p>Yes, put a ; after each one and run them in phpMyAdmin or the MySQL CLI tool.</p>]]></description>
			<author><![CDATA[null@example.com (elbekko)]]></author>
			<pubDate>Fri, 01 Feb 2008 12:52:24 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/108456/#p108456</guid>
		</item>
		<item>
			<title><![CDATA[Re: *help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/108451/#p108451</link>
			<description><![CDATA[<div class="quotebox"><cite>Jérémie wrote:</cite><blockquote><p>and then the same for every table, like <br />ALTER TABLE `pun13_categories`&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci<br />And then, maybe row by row (where it&#039;s useful).</p></blockquote></div><p>Is it enought to do this command or do I have to do this command for the tables under also? <br />Like:</p><p>bans<br />&nbsp; &nbsp; &nbsp; username<br />&nbsp; &nbsp; &nbsp; ip<br />&nbsp; &nbsp; &nbsp; email<br />&nbsp; &nbsp; &nbsp; message</p><div class="quotebox"><cite>Jérémie wrote:</cite><blockquote><p>Much simpler to set it up at the database level, then install PunBB.</p></blockquote></div><p>Which means?</p><div class="quotebox"><cite>Jérémie wrote:</cite><blockquote><p>If your forum is in Farsi, Swedish, French, Spanish, or others, the collation isn&#039;t the same. Look at the utf8_ collate available, if your language isn&#039;t one of them utf8_general_ci is probably the best one for you.</p></blockquote></div><p>Ok I understand. My forum is in Swedish, is latin1_swedish_ci a good choice or shall I use utf8_swedish_ci?</p>]]></description>
			<author><![CDATA[null@example.com (staffanl)]]></author>
			<pubDate>Fri, 01 Feb 2008 09:49:15 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/108451/#p108451</guid>
		</item>
		<item>
			<title><![CDATA[Re: *help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/108361/#p108361</link>
			<description><![CDATA[<p>Aren&#039;t username case sensitive?</p><p>Anyway, the best collation depend on your language. If your forum is in Farsi, Swedish, French, Spanish, or others, the collation isn&#039;t the same. Look at the utf8_ collate available, if your language isn&#039;t one of them utf8_general_ci is probably the best one for you.</p><p>You simply need to alter it for your database: </p><div class="codebox"><pre><code>ALTER DATABASE `your db` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci</code></pre></div><p>for example,</p><p>and then the same for every table, like </p><div class="codebox"><pre><code>ALTER TABLE `pun13_categories`  DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci</code></pre></div><p>And then, maybe row by row (where it&#039;s useful).</p><p>Much simpler to set it up at the database level, then install PunBB.</p>]]></description>
			<author><![CDATA[null@example.com (Jérémie)]]></author>
			<pubDate>Thu, 31 Jan 2008 17:38:39 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/108361/#p108361</guid>
		</item>
		<item>
			<title><![CDATA[*help* How to change collation??]]></title>
			<link>https://punbb.informer.com/forums/post/108359/#p108359</link>
			<description><![CDATA[<p>Hi my collation in the database in right now at UTF-8_bin. This cause my big problem because the forum cant se the different in BIG and small letters. Thats means serveral things dont work. </p><p>People cant log in with&nbsp; &nbsp; &quot;Staffan&quot; if there username is &quot;staffan&quot;<br />Author search do not work,&nbsp; you cant search for peoples topic if the got a big letter in there name.<br />ect...</p><br /><p>So if Im right the best collation to use is <strong>utf8_general_ci</strong>..</p><p>How do I change my tables in the database to utf8_general_ci instead of UTF-8_bin?</p>]]></description>
			<author><![CDATA[null@example.com (staffanl)]]></author>
			<pubDate>Thu, 31 Jan 2008 17:21:58 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/108359/#p108359</guid>
		</item>
	</channel>
</rss>
