<?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>h4x3d.com &#187; phpmyadmin</title>
	<atom:link href="http://h4x3d.com/tag/phpmyadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://h4x3d.com</link>
	<description>online portfolio of Julian Klewes</description>
	<lastBuildDate>Thu, 24 May 2012 18:50:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Wrong character encoding &#8211; Latin-1, UTF-8 data in MySQL</title>
		<link>http://h4x3d.com/wrong-character-encoding-latin-1-utf-8-data-in-mysql/</link>
		<comments>http://h4x3d.com/wrong-character-encoding-latin-1-utf-8-data-in-mysql/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 03:17:17 +0000</pubDate>
		<dc:creator>jz</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://h4x3d.com/?p=1420</guid>
		<description><![CDATA[This article saved me quite some headache &#8211; also this is the cleanest solution of all. For several other workarounds, see Stackoverflow here. The solution that works was: mysqldump -h (your ip) -u (your username) -p  --opt --quote-names \ --skip-set-charset --default-character-set=latin1 (your db name) &#62; (your db name)-dump.sql mysql -h (your ip) -u (your username) [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hno3.org/2010/04/22/fixing-double-encoded-utf-8-data-in-mysql/">This article</a> saved me quite some headache &#8211; also this is the cleanest solution of all. For several other workarounds, see Stackoverflow <a href="http://stackoverflow.com/questions/1344692/i-need-help-fixing-broken-utf8-encoding">here</a>.</p>
<p>The solution that works was:</p>
<pre><code>mysqldump -h (your ip) -u (your username) -p  --opt --quote-names \
--skip-set-charset --default-character-set=latin1 (your db name) &gt; (your db name)-dump.sql</code></pre>
<pre><code>mysql -h (your ip) -u (your username) -p \
--default-character-set=utf8 (your db name) &lt; (your db name)-dump.sql</code></pre>
<p>delete the brackets, dont fill in the brackets (your ip) = 127.0.0.1 for instance</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/wrong-character-encoding-latin-1-utf-8-data-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize your SQL-Database</title>
		<link>http://h4x3d.com/optimize-your-sql-database/</link>
		<comments>http://h4x3d.com/optimize-your-sql-database/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 11:09:04 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[Dailies]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/optimize-your-sql-database/</guid>
		<description><![CDATA[It does what it says &#8211; it optimizes your sql-database (really hard!). From time to time it makes sense to log into phpMyAdmin, click the desired database, select all tables and select &#8220;optimize&#8221; from the drop-down. My WordPress Database went down 4MB (from 20MB to 16MB), here are some figures after the optimization: 16 tables [...]]]></description>
			<content:encoded><![CDATA[<p>It does what it says &#8211; it optimizes your sql-database (really hard!).<br />
From time to time it makes sense to log into phpMyAdmin, click the desired database, select all tables and select &#8220;optimize&#8221; from the drop-down.</p>
<p>My WordPress Database went down 4MB (from 20MB to 16MB), here are some figures after the optimization:</p>
<p><em>16 tables total<br />
47.081 entries<br />
MyISAM type<br />
language: utf8_general_ci<br />
size: 16,8 MB<br />
overhead: 0 Bytes (was insanely high before the optimization)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/optimize-your-sql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duplicate entry ?0&#8242; for key 1</title>
		<link>http://h4x3d.com/duplicate-entry-0-for-key-1/</link>
		<comments>http://h4x3d.com/duplicate-entry-0-for-key-1/#comments</comments>
		<pubDate>Sun, 23 Apr 2006 09:22:36 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[2006]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/duplicate-entry-0-for-key-1/</guid>
		<description><![CDATA[1. Go into your phpMyAdmin panel. 2. For each tables structure, edit the first entry (which should be a primary key such as ID). 3. Delete the 0 in the default value and select &#8220;auto_increment&#8221; in the drop-down menu next to it (on the right). 4. Save. 5. Go to the next table and do [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<div>1. Go into your phpMyAdmin panel.<br />
2. For each tables structure, edit the first entry (which should be a primary key such as ID).<br />
3. Delete the 0 in the default value and select &#8220;<strong>auto_increment</strong>&#8221; in the drop-down menu next to it (on the right).<br />
4. Save.<br />
5. Go to the next table and do the same.</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/duplicate-entry-0-for-key-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

