<?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>kwatog &#38; co. &#187; wordpress mu</title>
	<atom:link href="http://kwatog.com/tag/wordpress-mu/feed/" rel="self" type="application/rss+xml" />
	<link>http://kwatog.com</link>
	<description>tech notes and general nonsense</description>
	<lastBuildDate>Wed, 25 Aug 2010 05:46:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Rename Tables in MySQL</title>
		<link>http://kwatog.com/blog/mysql/rename-tables-in-mysql/</link>
		<comments>http://kwatog.com/blog/mysql/rename-tables-in-mysql/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 02:20:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=121</guid>
		<description><![CDATA[If you want to hand code renaming tables, here&#8217;s the sample. Single Table RENAME TABLE wp_users TO kwg_users; multiple tables RENAME TABLE wp_users TO kwtg_users, wp_usermeta TO kwtg_usermeta, wp_site TO kwtg_wpsite, wp_signups TO kwtg_signups; This is handy when renaming a whole lot of tables as in the case of WordPress mu where each blog has [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to hand code renaming tables, here&#8217;s the sample. </p>
<p><strong>Single Table</strong><br />
<code><br />
RENAME TABLE wp_users  TO kwg_users;<br />
</code></p>
<p><strong>multiple tables</strong><br />
<code><br />
RENAME TABLE wp_users  TO kwtg_users,<br />
                     wp_usermeta TO kwtg_usermeta,<br />
                     wp_site TO kwtg_wpsite,<br />
                     wp_signups TO kwtg_signups;<br />
</code></p>
<p>This is handy when renaming a whole lot of tables as in the case of <strong>WordPress mu</strong> where each blog has its own set of tables. If you decide to rename them for security reasons (like you forgot to change the default table prefix during installation), it will be a pain to change them one by one through <strong>phpMyAdmin</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/mysql/rename-tables-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modified WP Table Prefix in bbPress</title>
		<link>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/</link>
		<comments>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 02:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[table prefix]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=119</guid>
		<description><![CDATA[If you change your WordPress/WordPress mu table prefix (and thus, renamed the tables too) and you have a bbPress integrated with it, chances are your bbPress will lose its connection with WordPress since the configuration is not in bb-config.php. You&#8217;ll need to update the meta tables, too through mysql or phpmyadmin. Here&#8217;s the update query. [...]]]></description>
			<content:encoded><![CDATA[<p>If you change your WordPress/WordPress mu table prefix (and thus, renamed the tables too) and you have a bbPress integrated with it, chances are your bbPress will lose its connection with WordPress since the configuration is not in bb-config.php. You&#8217;ll need to update the meta tables, too through mysql or phpmyadmin. Here&#8217;s the update query.</p>
<p><code><br />
UPDATE bb_meta<br />
SET meta_value = 'wpmu_'<br />
WHERE meta_key = 'wp_table_prefix';<br />
</code></p>
<p>That&#8217;s of course considering your bbPress table is bb_meta and the new prefix for WordPress/WordPress mu is <strong>wpmu</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
