<?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>WP Garage &#187; databases</title>
	<atom:link href="http://wpgarage.com/tag/databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Tue, 15 May 2012 11:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Data portability and data serialization in WordPress</title>
		<link>http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/</link>
		<comments>http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 13:46:51 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[data serialization]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[serialization]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=1276</guid>
		<description><![CDATA[<p>Over at illuminea, we’ve been migrating WordPress sites for years. So we thought we’d seen it all when it came to WordPress migration. And yet, recently we encountered an issue that we had never dealt with before, that puts a snag in the ease with which you can move WordPress sites: data serialization. One of [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/">Data portability and data serialization in WordPress</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/" data-url="http://illum.in/HxQEUf" data-text="Data portability and data serialization in WordPress" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/"></g:plusone></div></div><p>Over at <a href="http://illuminea.com" target="_blank">illuminea</a>, we’ve been migrating WordPress sites for years. So we thought we’d seen it all when it came to WordPress migration. And yet, recently we encountered an issue that we had never dealt with before, that puts a snag in the ease with which you can move WordPress sites: data serialization.</p>
<p>One of the reasons we love WordPress is because it’s so future-proof. What I mean by that is that once you have created a WordPress site, you aren’t stuck where you are for the following reasons:</p>
<ul>
<li>Content is separate from form so at any point you can completely redesign your site while retaining content and link structure. This is important to ensure you don’t lose traffic from search engines and inbound links.</li>
<li>As long as the WordPress software continues to be developed, it will continue to support modern web technologies so users are not left with an archaic system that, for example, adores IE7 but doesn’t know what HTML5 is.</li>
<li>Your site is portable. You need to move a site to another server, or even another domain name? No problem. A few steps related to find-and-replace, exporting and importing the database, and setting up global 301 redirects (if you’ve changed domains) and you’re there.</li>
</ul>
<p>All the above is true, except the data portability point. It’s not quite as true as I thought it was.</p>
<h2>Data serialization and its impact on data portability</h2>
<p>(I am a big newbie when it comes to data serialization, so the following is based on what I’ve managed to learn over the while and could very well be inaccurate/wrong.)</p>
<p>It seems that developers use data serialization in order to improve performance or efficiency in a database. Instead of creating a new table for data, or storing data in a table which could end up having wasteful empty fields, you can keep all the data in an array in one field. This leads to saved space and simplified SQL statements. Serialized data is stored and recovered using PHP’s <a href="http://us2.php.net/manual/en/function.serialize.php" target="_blank">serialize()</a> and <a href="http://us2.php.net/manual/en/function.unserialize.php" target="_blank">unserialize()</a> functions. <a href="http://terriswallow.com/weblog/2008/php-serialize-unserialize-whats-it-do-whats-it-for/" target="_blank">Terri Swallow explains</a> how using serialized data for her multi-user plugin helped save her from creating hundreds of new options for every new user created.</p>
<p>Here&#8217;s an example of serialized data from <a title="WordPress Serializing Data" href="http://nacin.com/2010/04/18/wordpress-serializing-data/" target="_blank">Andrew Nacin</a>:</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>
<div><code>$data</code> <code>= </code><code>array</code><code>( </code><code>'apple'</code><code>, </code><code>'banana'</code><code>, </code><code>'orange'</code> <code>);</code></div>
<div><code>echo</code> <code>serialize( </code><code>$data</code> <code>);</code></div>
<div><code>// Result is a string we can unserialize into an array:</code></div>
<div><code>// a:3:{i:0;s:5:"apple";i:1;s:6:"banana";i:2;s:6:"orange";}</code></div>
</div>
</td>
</tr>
</tbody>
</table>
<p>But there are serious drawbacks to using serialized data. One problem is that you can’t run a MySQL query on serialized data. The data would have to be pulled out of the table via PHP, unserialized, and then searched using PHP instead of MySQL (thanks to <a href="http://www.catchmyfame.com/2009/09/29/introduction-to-php%E2%80%99s-serialize-function/" target="_blank">Catch My Fame</a> for explaining this). So let’s say you are storing user data in serialized format, but you want to find out how many of your users are from Australia, you can’t get that info easily.</p>
<p>A serious problem, in my opinion, is the impact serialization has on data portability. It makes it near-impossible to port a WordPress site from one domain to another without losing data. Another possible, yet unlikely issue, is if you need to port data from WordPress into another programming language – admittedly a rare occurrence, but a possible one that needs to be considered.</p>
<p>There are developers out there who are very frustrated by the use of serialized data:</p>
<p>An <a href="http://il.php.net/manual/en/function.serialize.php#107717" target="_blank">anonymous comment</a> left on the PHP manual entry for serialize():</p>
<blockquote>
<p>Please! please! please! DO NOT serialize data and place it into your database. Serialize can be used that way, but that&#8217;s missing the point of a relational database and the datatypes inherent in your database engine. Doing this makes data in your database non-portable, difficult to read, and can complicate queries. If you want your application to be portable to other languages, like let&#8217;s say you find that you want to use Java for some portion of your app that it makes sense to use Java in, serialization will become a pain in the buttocks. You should always be able to query and modify data in the database without using a third party intermediary tool to manipulate data to be inserted…That&#8217;s not to say serialize() is useless. It&#8217;s not&#8230;Just don&#8217;t abuse serialize because the next guy who comes along will have a maintenance or migration nightmare.</p>
</blockquote>
<p><a href="http://alexscammon.com/2011/06/migrating-wordpress-blogs-fixing-the-serialization/" target="_blank">Alexander Scammon:</a> “WordPress does a silly thing.  It has serialized data inside its database.”</p>
<p>Serialized data usage that can have a serious impact on WordPress portability:</p>
<ul>
<li>Some widget data (though for some reason we’ve never had issues retaining widgets via a database dump)</li>
<li>Some theme settings</li>
<li>Plugin data</li>
</ul>
<p>It was related to serialized plugin data that we had our first encounter with data serialization. We had installed a plugin to help a client manage a technical issue on their site without having to get too technical. They entered hundreds of entries in the plugin, but upon moving the site from development to production, the data disappeared. By that point, there was no way to recover it unfortunately, but we had definitely learned a painful, important lesson.</p>
<h2>So what do we do?</h2>
<p>Some suggestions:</p>
<ol>
<li>Theme and plugin developers: please seriously consider whether the benefits of serializing your data outweigh the potential future problems it could cause.</li>
<li>Theme and plugin developers: if you must use serialized data, please try to make sure there’s some way to export and import the data. Even a simple .csv export is better than nothing.</li>
<li>WordPress users: try to ascertain before using a theme or plugin whether the data is stored in a serialized format.</li>
</ol>
<p>But let’s say you find yourself with a database that includes serialized data. Here are some tools created by generous souls that might be able to help you port your data without losing it:</p>
<p><a href="http://petesaia.com/work/peach/" target="_blank">Peach</a> – an online utility that aims to deal with the fact that WordPress stores URLs in serialized format, which makes it hard to move a site from one domain to another, or from staging to production. To use this tool (which works best in Chrome) ou drag-and-drop an .sql file into the square in the middle of the page, and set a new domain.</p>
<p><a href="http://interconnectit.com/124/search-and-replace-for-wordpress-databases/" target="_blank">WordPress Search and Replace Tool</a> – this script can also handle multiply nested serializations and multi-byte Unicode changes, which is important now that internationalized domain names are allowed. The code will work for any platform that stores PHP serialized arrays in a MySQL database (Drupal, Joomla, etc.). You must delete the script from your server once you’re finished with it.</p>
<p><a href="http://www.bangheadonwall.net/?attachment_id=227" target="_blank">fix_serialization.php</a> – Not much description provided with this tool, but Alex Scammon provides instructions in <a href="http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/#comment-63684">his comment below</a>.</p>
<p><a title="WP Migrate DB" href="http://wordpress.org/extend/plugins/wp-migrate-db/" target="_blank">WP Migrate DB</a> &#8211; this is a plugin that exports your database as a MySQL data dump, does a find and replace on URLs and file paths, then allows you to save it to your computer.  It even takes into account serialized data and updates the string length values. (thanks <a href="http://somadesign.ca/" target="_blank">Matt Wiebe</a>)</p>
<p>After trying these tools, we wrote an <a href="http://wpgarage.com/tips/data-serialization-wordpress-and-my-new-best-friend/">update on data serialization</a>.</p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/">Data portability and data serialization in WordPress</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>6 things to remember when moving WordPress blogs to a different host</title>
		<link>http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/</link>
		<comments>http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 10:15:27 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[Fantastico]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=335</guid>
		<description><![CDATA[<p>I recently had to move all my WordPress sites and blogs to a new server because Bluehost sucks. My sites were going down on a near-daily basis for way too long, and they couldn&#8217;t care less. So I did what I really did not want to do, and moved six WordPress sites to a new [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/">6 things to remember when moving WordPress blogs to a different host</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/" data-url="http://illum.in/nBHjxz" data-text="6 things to remember when moving WordPress blogs to a different host" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/"></g:plusone></div></div><p>I recently had to move all my WordPress sites and blogs to a new server because Bluehost sucks. My sites were going down on a near-daily basis for way too long, and they couldn&#8217;t care less. So I did what I really did not want to do, and moved six WordPress sites to a new hosting provider, which has proven itself with my clients&#8217; sites: <a title="Hostgator" href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=illuminea">Hostgator</a>. And along the way I&#8217;ve learned quite a few things about what to pay attention to when moving WordPress sites from one place to another, which I&#8217;d like to share.</p>
<h3><strong>Lesson 1: WordPress&#8217; native XML export is not good enough</strong></h3>
<p>In WordPress, you can easily export a site by going to Manage &gt; Export, which will create a unique XML file that you can import in any new site. This is fine for a very simple, single-user blog without heavy customizations. However, if your blog has multiple users, and if you have added info to their profiles, that info will be lost in this export. In addition, all users will be given a permission level of Subscriber, which is annoying if you need to go and change everyone back to their original permission level.</p>
<p>Also, if you have installed plugins that created new tables in your database, these will not be exported.</p>
<p>And, if you had any links saved, this will not save your links. See Lesson 6 below for more information on this, but the point is that the only way to save your links AND their categories is to export your entire database.</p>
<p>Therefore, in order to retain all settings and information that your site needs, the only way to do so is to export your entire database, and then import it to the new WordPress installation.</p>
<p><strong>Exporting and Importing a WordPress blog</strong></p>
<p>Here&#8217;s how you export and import your WordPress database. WARNING: Messing with databases in PHPMyAdmin can be hazardous to your health and to the health of your site. One wrong move and everything will be but a distant memory. So make sure to backup like crazy; and I take no responsibility for any harm you may come to by following my instructions. Now, let us begin:</p>
<ol>
<li>Log in to PHPMyAdmin via your control panel or however else you log in.</li>
<li>If you have multiple WordPress blogs on one server, you may see a list of databases in the left-hand sidebar. Make sure you are dealing with the right database. The way that I check which database is the right one is by browsing the database and viewing the information there, whether it&#8217;s posts or even meta data like the blog name. To browse, click on the browse icon next to a table&#8217;s name (Note: your PHPMyAdmin interface may look a bit different, depending on the version you are using):<br />
<img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://wpgarage.com/wp-content/uploads/2008/07/phpmyadminbrowse.jpg" border="0" alt="Browse database tables in PHPMyAdmin" width="226" height="71" /></li>
<li>Once you are sure you are in the right database, click on Export at the top of the PHPMyAdmin toolbar:<br />
<img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://wpgarage.com/wp-content/uploads/2008/07/phpmyadmin-toolbar.jpg" border="0" alt="Export database in PHPMyAdmin" width="438" height="33" /></li>
<li>On the Export screen, I usually leave all the settings as is, but I do make sure to to 2 exports: a compressed (gzip) export, and a regular export, just in case. So export one while selecting None, as shown below, and one while selecting gzipped:<br />
<a href="wp-content/uploads/2008/07/phpmyadmin-compress.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://wpgarage.com/wp-content/uploads/2008/07/phpmyadmin-compress-thumb.jpg" border="0" alt="Compress export file in PHPMyAdmin" width="329" height="80" /></a></li>
<li>Now on to importing: install WordPress on your new server.</li>
<li>Go in to PHPMyAdmin for your new server, and delete all your tables for your new WordPress installation (Yikes!). In PHPMyAdmin, to delete is called to &#8220;drop.&#8221; So on your main database page, select all your tables and click on Drop, or on the red Xs next to the table names:<br />
<img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://wpgarage.com/wp-content/uploads/2008/07/phpmyadmin-droptables.jpg" border="0" alt="Drop tables in PHPMyAdmin" width="379" height="71" /></li>
<li>Now, import your exported WordPress database into your new installation. To do that, stay in PHPMyAdmin for your new site, and click on the Import tab that is to the right of the Export tab on the toolbar (see image in step 3 above).</li>
<li>Browse to find your exported database file. Leave the rest of the settings, and click Go.</li>
<li>Now your old WordPress database is in your new installation. It may work at this point, so go check. If it does, great. If not, continue reading.</li>
<li>You need to make sure that your database table <em>names</em> work with the new installation of WordPress. This means the following: if you installed your old database with Fantastico, all your database tables have a prefix of wp_. If you didn&#8217;t install it with Fantastico, the database tables probably don&#8217;t have a prefix. Your new database tables may have a different naming convention depending on how you installed it. So, take a look at your database table names, and note if they start with wp_ or not. Now it is time to open wp-config.php.</li>
<li>Once you have opened wp-config.php, look at line 16, which says something like this:<br />
$table_prefix  = &#8216;wp_&#8217;;<br />
If your database tables start with the wp_ prefix, leave the line as above. If they don&#8217;t have a prefix, change it to:</li>
<p>$table_prefix  = &#8221;;</ol>
<p>Now your blog should mostly work (I hope)! But there are a few more things that we need to take care of:</p>
<h3>Lesson 2: Widgets are not preserved with an XML backup<span style="text-decoration: line-through;">, even with a full database backup</span></h3>
<p>If you are using widgets somewhere in your blog, you will have to redo them one by one on your new blog if you use the XML backup. So take out a pencil and paper, and write down exactly what widgets you are using, what order they&#8217;re in, and any modifications or customizations that you made to them. Ok, you can use Word or Notepad if you want, but that&#8217;s about as technologically friendly as you can get.</p>
<h3>Lesson 3: In addition to backing up your theme and plugins folder, remember your Uploads folder!</h3>
<p>In your blog under Settings &gt; Miscellaneous, you have set where any uploaded files or images will be stored. Make sure to backup that folder, in addition to your theme and plugins folder, so that you will have all those files in your new blog. In your new blog, go to Settings &gt; Miscellaneous and make sure it&#8217;s pointing to that re-uploaded Uploads folder.</p>
<h3>Lesson 4: Make a note of your site&#8217;s permalink structure</h3>
<p>You want to retain the same permalink structure for your new site so that you can continue to enjoy the same traffic you had before from search engines and incoming links. So make note of your permalink structure, and once your new blog is installed, make sure to go to Settings &gt; Permalinks, and set the same structure there.</p>
<h3>Lesson 5: Don&#8217;t forget your favicon</h3>
<p>Your favicon can get lost in the shuffle. Make sure to back it up, and upload it to your new site.</p>
<h3>Lesson 6: It is hard to preserve WordPress blogroll links and their categories</h3>
<p>Here at WordPress Garage, I had a page until recently called &#8220;Links we Love.&#8221; I had painstakingly added, categorized and described many links that I thought were useful to my readers. Well, during the whole server move, the links got lost because we didn&#8217;t export them by going to <a href="wp-links-opml.php">wp-links-opml.php</a>, and saving that OPML file as a text file for importing later. In any case, even if I had saved that and imported it here, I would have lost all my categories anyway. So just note that if you&#8217;re depending on the XML backup, you will lose all your links. If you back up your links with the OPML file, you will lose your categories.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>To sum up: try not to ever have to move your WordPress blog from one server to another, and you will add years on to your life.</p>
<p>Happy blogging!</p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/">6 things to remember when moving WordPress blogs to a different host</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/6-things-moving-wordpress-blogs-different-host/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>38 ways to optimize and speed up your WordPress blog</title>
		<link>http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/</link>
		<comments>http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 11:43:14 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/</guid>
		<description><![CDATA[<p>WordPress blogs and sites can be notoriously slow. But fear not &#8211; here are ways to make your WordPress blog super speedy and fun for your visitors to view with a few tweaks, hacks and plugins. Be sure to check back because I will be updating this post as I discover new and wonderful ways [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/">38 ways to optimize and speed up your WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/" data-url="http://illum.in/q9H4VK" data-text="38 ways to optimize and speed up your WordPress blog" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/"></g:plusone></div></div><p>WordPress blogs and sites can be notoriously slow. But fear not &#8211; here are ways to make your WordPress blog super speedy and fun for your visitors to view with a few tweaks, hacks and plugins. Be sure to check back because I will be updating this post as I discover new and wonderful ways to optimize and speed up WordPress blogs.</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/04/matzah1.jpg" alt="Matzah" align="left" />[This post is in honor of the current Pessach (<a href="http://en.wikipedia.org/wiki/Passover" title="Passover">Passover</a>) season, a Jewish holiday where we clean our houses frantically in the hope that not one crumb of <a href="http://en.wikipedia.org/wiki/Passover#Chametz" title="leavened bread">leavened bread</a> (i.e. regular bread) be found during the 7 day holiday. This post is the WordPress version of Pessach cleaning, where cluttered databases are equivalent to leavened bread, etc. Happy Pessach!]</p>
<h3>Define goals and create benchmarks:</h3>
<ol>
<li>First, define a goal, such as reducing page load time from 8 seconds to 2 seconds.</li>
<li>Measure your initial state and the results of each modification so that you can quantify any improvement. Test your site&#8217;s speed with the <a href="http://www.iwebtool.com/speed_test" title="Website Speed Test">Website Speed Test</a>, but do multiple tests since the results can be inaccurate due to fluctuations in your internet connection and other factors.</li>
<li>Use <a href="http://tools.pingdom.com/fpt/" title="Pingdom">Pingdom</a> to get a detailed analysis of your blog’s loading time and performance.</li>
<li>See what your browser is doing with tools like <a href="http://www.getfirebug.com/">Firebug’s</a> network tool, <a href="http://www.xk72.com/charles/">Charles Proxy</a> or <a href="http://www.wireshark.org">Wireshark</a>, and review the server logs.</li>
<li><a href="http://developer.yahoo.com/yslow/" title="YSlow">YSlow</a> &#8211; analyzes web pages and tells you why they&#8217;re slow based on the <a href="http://developer.yahoo.com/performance/index.html#rules">rules for high performance web sites</a>. YSlow is a <a href="https://addons.mozilla.org/en-US/firefox/addon/5369">Firefox add-on</a> integrated with <a href="http://www.getfirebug.com/">Firebug</a>. See this presentation from Yahoo! that covers their latest research results and performance breakthroughs. It covers their existing 14 rules, plus 20 new rules for faster web pages. They&#8217;ve categorized the optimizations into: server, content, cookie, JavaScript, CSS, images, and mobile.
<p id="__ss_319798" style="width: 425px; text-align: left">&nbsp;</p>
<p><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=high-performance-web-pages-20-new-best-practices-1206389190195598-3" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="355" width="425"></embed></p>
<p style="font-size: 11px; padding-top: 2px; font-family: tahoma,arial; height: 26px"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border-width: 0px; margin-bottom: -5px" alt="SlideShare" /></a> | <a href="http://www.slideshare.net/stoyan/high-performance-web-pages-20-new-best-practices?src=embed" title="View 'High Performance Web Pages - 20 new best practices' on SlideShare">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></p>
</li>
</ol>
<h3>Reduce the number of dynamic PHP and http calls:</h3>
<ol>
<li>&#8220;There is an inherent overhead in each HTTP request. It takes substantially less time to serve one 30K file than it does three 10K files.&#8221; So combine all files in a type into a library. Learn how <a href="http://jonathanhedley.com/articles/2008/04/guide-to-website-speed-optimization" title="How-to: Optimize your site for speed">here</a>.</li>
<li>Use different host names to increase the number of active download threads.</li>
<li>Minimize PHP and database queries &#8211; Each time a page on your site loads, if your browser has to execute any PHP queries, it adds to the load time. If you replace the PHP queries with static HTML, every time a page loads, your browser just reads the HTML. An example from <a href="http://wpcandy.com/4-simple-ways-to-speed-up-wordpress/" title="4 Simple Ways To Speed Up WordPress">WP Candy</a>:<br />
With PHP requests: <code>&lt;title&gt;&lt;?php bloginfo(’name’); ?&gt;&lt;?php bloginfo(’description’); ?&gt;&lt;/title&gt;</code><br />
Without PHP requests: <code>&lt;title&gt;WPCandy - The Best of WordPress&lt;/title&gt;<br />
Joost de Valk says that you can remove 11 queries to the database by doing the following in your header.php and footer.php files:<br />
</code></p>
<ul>
<li>making your stylesheet URL&#8217;s static</li>
<li>making your pingback URL static</li>
<li>making your feed URLs static</li>
<li>removing the blog&#8217;s WordPress version</li>
<li>making your blog&#8217;s name and tagline / description staticSee more examples of how you can replace code in your WordPress template files with static HTML <a href="http://wpcandy.com/4-simple-ways-to-speed-up-wordpress/" title="4 Simple Ways To Speed Up WordPress">here</a> and <a href="http://www.joostdevalk.nl/speed-up-and-clean-up-your-wordpress/" title="Speed up and clean up your WordPress!">here</a>.</li>
</ul>
</li>
<li>Check if you have too many external calls to things like Amazon, eBay, MyBlogLog, etc. Try commenting them out one by one to see if it speeds things up.</li>
</ol>
<h3>Optimize your files: CSS, HTML, Javascript, images, video</h3>
<ol>
<li><a href="http://www.webreference.com/dev/graphics/" title="Optimizing Web Graphics">Optimize your image files for the web</a>.</li>
<li>Make sure that all images have height and width tags.</li>
<li>Consider hosting your images on an external site like <a href="http://flickr.com" title="flickr">flickr</a> that has huge servers and can handle the load.</li>
<li>Use <a href="http://alistapart.com/articles/sprites" title="CSS Sprites: Image Slicing’s Kiss of Death">CSS sprites</a> for static web images. CSS sprites are where the images are added to one larger image file, and laid out in a convenient way. Here&#8217;s a <a href="http://www.csssprites.com/" title="CSS Sprites generator">CSS Sprites generator</a>.</li>
<li>Do not host videos on your server. Upload them to <a href="http://youtube.com" title="YouTube">YouTube</a>, <a href="http://video.google.com">Google Video</a>, or any other video sharing site and let them handle the server load.</li>
<li><a href="http://javascriptcompressor.com/" title="Compress your Javascript.">Compress your Javascript</a>, using a tool or by removing formatting (and potentially by shortening function and variable names). This can reduce file size by 60%. Add gzip compression to that as well and you’re looking at a serious size reduction.</li>
<li><strong>Compress HTML and CSS</strong> by removing HTML formatting, white space (where you divide code among separate lines for easier readability), trimming class names, omitting unambiguous quotes around attributes, etc.</li>
<li>Compress your CSS with the <a href="http://dev.wp-plugins.org/wiki/css-compress" title="CSS Compress WordPress plugin">CSS Compress WordPress plugin</a> &#8211; Automatically removes comments, new lines, tabs, and gzip compresses (GZIP) any CSS file called with &#8220;&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;&#8221; Just activating the plugin with the default Kubrick theme will reduce the CSS file from 8k to 1.7k.</li>
<li>Compress your CSS by using shorthand CSS. Here&#8217;s an example from <a href="http://wpcandy.com/4-simple-ways-to-speed-up-wordpress/" title="4 Simple Ways To Speed Up WordPress">WP Candy</a>:<br />
<code>Long: .test {margin-top: 7px; margin-right: 1px; margin-bottom: 5px; margin-left: 3px;}<br />
<code>Short: .test {margin: 7px 1px 5px 3px;}</code></code></li>
<li>Use external scripts &#8211; Instead of placing tons of code in your header.php file, use external scripts. This allows the browser to cache the script so it won’t have to read it for every other page.</li>
<li>Validate your code at <a href="http://validator.w3.org/" title="W3C">W3C</a> to make sure you don&#8217;t have any major errors slowing down your page.</li>
<li>Allow progressive rendering: Load CSS files at the top of the page, from within the head section; load JavaScript files at the bottom of the HTML. And/Or&#8230;</li>
<li>Stop slow loading scripts from breaking your blog with <a href="http://www.scratch99.com/2008/01/wordpress-plugin-iframewidgets-v1-released/" title="IFrameWidgets v1.0">IFrameWidgets v1.0</a> WordPress plugin. Slow widgets or snippets of Javascript can either time-out, or prevent the items below them from loading. The plugin creates WordPress sidebar widgets that run in an <a href="http://en.wikipedia.org/wiki/IFrame">IFrame</a>. Since IFrames load in parallel to the rest of the page, slow loading JavaScript widgets won’t affect the rest of the page.</li>
</ol>
<h3>Plugins</h3>
<ol>
<li>Disable or delete unused plugins &#8211; some plugins have tons of script and code, and even create database tables in your WordPress database. Use only the plugins you really need, and delete the rest.</li>
<li>Sometimes plugins require that you add a snippet of code to your theme&#8217;s template files to call the plugin. Usually, it looks something like this:<br />
&lt; ?php refer_plugin(); ?&gt;<br />
However, if for some reason you disable that plugin, you will get an error. <a href="http://www.joostdevalk.nl/speed-up-and-clean-up-your-wordpress/" title="Speed up and clean up your WordPress!">Joost de Valk</a> recommends using PHP&#8217;s special function called function_exists to prevent the blog from breaking if plugins are disabled or removed. Using it will make the code look like this:<br />
&lt; ?php if (function_exists(&#8216;refer_thanks&#8217;)) { refer_thanks(); } ?&gt;</li>
<li><a href="http://www.connectedinternet.co.uk/2007/01/25/wordpress-optimisation-control-when-plugins-are-loaded/" title="Control when your WordPress plugins are loaded">Control when your WordPress plugins are loaded</a>: WordPress processes all of the code for all active plugins, even if that plugin isn’t used on a particular page. If a particular resource heavy plugin isn’t used on certain pages, then you can tell WordPress not to load it on those pages by wrapping an <code>if</code> statement around the content of each function to check what page is being loaded. Learn more about how to do this <a href="wp-admin/Control%20when%20your%20WordPress%20plugins%20are%20loaded" title="WordPress Optimisation: Control When Plugins Are Loaded">here</a> and <a href="http://srhaber.com/2006/02/15/site-addition-part-1-archives-page/" title="Site Addition Part 1: Archives Page">here</a>.</li>
</ol>
<h3>Database</h3>
<ol>
<li>Use phpMyAdmin to optimize your database: Log in to phpMyAdmin, select all the tables, and then “repair” and “optimize.”</li>
<li>Delete excess records in your WordPress database. All plugins use the wp_options table to store data, which is the same table used by WordPress to store all settings for your blog, and is accessed every time you open any page. When you deactivate a plugin, these records are left behind, bloating your database. To clean it up you can use the <a href="http://www.mittineague.com/dev/co.php" title="WordPress Clean Options Plugin">WordPress Clean Options Plugin</a>, which finds orphaned options left after you have removed plugins and removes them from the wp_options table, or manually as follows: Back up your database, login to phpMyAdmin, open your blog&#8217;s database, and click on browser for the wp_options table. Go through this table record by record to identify any records left behind by old plugins. (from <a href="http://www.howtospoter.com/web-20/wordpress/2-things-i-hate-about-wordpress-and-how-to-turn-them-into-your-advantage" title="2 Things I Hate About WordPress And How To Turn Them Into Your Advantage">WordPress Web 2.0 Spot-Er</a>).</li>
<li>Use the <a href="http://wordpress.designpraxis.at/plugins/optimize-db/" title="Optimize DB WordPress plugin">Optimize DB</a> plugin to optimize the tables of your database.</li>
<li>Use <a href="http://www.slapyo.com/2006/10/12/wordpress-plugin-fix-database/">WordPress Plugin: Fix Database</a> to check all tables in your database and fix any errors.</li>
<li>Lester &#8220;GaMerZ&#8221; Chan&#8217;s <a href="http://www.geekwithlaptop.com/wp-dbmanager-211-released/" title="WP-DBManager 2.11">WP-DBManager 2.11</a> plugin sorts your database backup files by date in descending order, can repair databases, and allows automatic scheduling of database backups and optimization.</li>
</ol>
<h3>Caching and protecting for server overload</h3>
<ol>
<li><strike>WordPress has a built-in caching system. Learn how to <a href="http://perishablepress.com/press/2007/12/26/how-to-enable-the-default-wordpress-object-cache/" title="How to Enable the Default WordPress Object Cache">enable the default WordPress object cache</a>.</strike> This has apparently been disabled in version 2.5.<strike><br />
</strike></li>
<li><a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache 2</a> &#8211; caches Worpress pages and stores them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and then building the page from the database.</li>
<li><a href="http://ocaoimh.ie/wp-super-cache/" title="WP Super Cache">WP Super Cache</a> &#8211; This plugin is a fork of the <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache 2</a> plugin, and generates html files which are served without ever invoking a single line of PHP.</li>
<li><a href="http://aciddrop.com/php-speedy/" title="PHP Speedy">PHP Speedy</a> &#8211; PHP Speedy is a script that you can install on your web server to automatically speed up the download time of your web pages.</li>
<li>Use the Expires and cache-control max age headers for all pages; Make dynamic pages support the if-modified-since request header; Use far future expiry headers on static resources; Use the <a href="http://www.ircache.net/cgi-bin/cacheability.py">cacheability engine</a> to test that you have caching and validation set up correctly. If you don&#8217;t know what all this means, don&#8217;t worry, neither do I, but you can find out more <a href="http://jonathanhedley.com/articles/2008/04/guide-to-website-speed-optimization" title="How-to: Optimize your site for speed">here</a>.</li>
<li><a href="http://hansengel.wordpress.com/wordpress/plugins/digg-protector/" title="Digg Protector plugin">Digg Protector plugin</a> &#8211; The Digg Protector will determine if a visitor is from Digg, and if the visitor is indeed from Digg, the plugin will serve them a remotely-hosted version of the image. Otherwise, the plugin will serve the locally-hosted (on that server) image.</li>
<li>Some more caching possibilities: MySQL query cache, PHP Compiler Cache. Learn more <a href="http://www.earnersblog.com/digproof-your-wordpress/" title="Diggproof &amp; Speed up Your WordPress Blog">here</a>.</li>
<li><a href="http://www.howtoforge.com/configuring_apache_for_maximum_performance" title="Configure Apache for maximum performance">Configure Apache for maximum performance</a>.</li>
</ol>
<p>Happy Optimization!</p>
<h3>Sources:</h3>
<p><a href="http://curtishenson.com/speed-up-your-website-part-one/" title="Speed up your website: Part One">Speed up your website: Part One</a></p>
<p><a href="http://jonathanhedley.com/articles/2008/04/guide-to-website-speed-optimization" title="How-to: Optimize your site for speed">How-to: Optimize your site for speed</a> &#8211; really excellent article with practical tips</p>
<p><a href="http://perishablepress.com/press/2007/12/26/how-to-enable-the-default-wordpress-object-cache/">How to Enable the Default WordPress Object Cache</a> &#8211; talks about <a href="http://mnm.uib.es/gallir/wp-cache-2/">wp-cache</a>, <a href="http://ocaoimh.ie/wp-super-cache/">wp-cache 2</a>, and built in wordpress caching.</p>
<p><a href="http://hansengel.wordpress.com/wordpress-plugins/digg-protector/">Digg Protector</a></p>
<p><a href="http://wpcandy.com/4-simple-ways-to-speed-up-wordpress/">4 Simple Ways To Speed Up WordPress</a></p>
<p><a href="http://www.joostdevalk.nl/speed-up-and-clean-up-your-wordpress/">Speed up and clean up your WordPress!</a></p>
<p><a href="http://www.jtpratt.com/2007/09/26/5-tips-to-help-your-slow-or-sluggish-blog-or-web-site-wordpress-especially/">5 Tips to Help Your Slow or Sluggish Blog or Web Site (WordPress Especially)</a></p>
<p><a href="http://www.howtospoter.com/web-20/wordpress/2-things-i-hate-about-wordpress-and-how-to-turn-them-into-your-advantage" title="Deleting excess records in your WordPress database">Deleting excess records in your WordPress database</a></p>
<p><a href="http://www.virtualhosting.com/blog/2007/wordpress-on-speed-17-tweaks-to-accelerate-your-wp/">WordPress on Speed: 17 Tweaks to Accelerate your WP</a></p>
<p><a href="http://lorelle.wordpress.com/2007/09/22/the-3-easiest-ways-to-speed-up-wordpress/">The 3 Easiest Ways to Speed Up WordPress</a></p>
<p><a href="http://www.search-this.com/2007/11/30/wordpress-a-5-minute-seo-mod/" title="WordPress Theme Hacks">WordPress Theme Hacks</a></p>
<p><a href="http://www.earnersblog.com/digproof-your-wordpress/">Diggproof &amp; Speed up Your WordPress Blog</a></p>
<p><a href="http://www.connectedinternet.co.uk/2007/01/25/wordpress-optimisation-control-when-plugins-are-loaded/" title="WordPress Optimisation: Control When Plugins Are Loaded">WordPress Optimisation: Control When Plugins Are Loaded</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/">38 ways to optimize and speed up your WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/38-ways-to-optimize-and-speed-up-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>Transferring Simple Tagging tags into another WordPress blog</title>
		<link>http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/</link>
		<comments>http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 22:11:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/</guid>
		<description><![CDATA[<p>I recently had to migrate an entire blog from one installation to another. WordPress does have an export function, and there are many database backup plugins and managers, but these really only work well with a basic installation that doesn&#8217;t use any plugins that created tables. So, in my case, I couldn&#8217;t find anything that enabled [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/">Transferring Simple Tagging tags into another WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/" data-url="http://illum.in/pjAtFK" data-text="Transferring Simple Tagging tags into another WordPress blog" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/"></g:plusone></div></div><p>I recently had to migrate an entire blog from one installation to another.  WordPress does have an export function, and there are many database backup  plugins and managers, but these really only work well with a basic installation  that doesn&#8217;t use any plugins that created tables. So, in my case, I couldn&#8217;t  find anything that enabled me to move the <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/">Simple  Tagging</a> tags from one blog to another &#8211; easily.</p>
<p>Why am I still using Simple Tagging, you may ask, if shiny new WordPress 2.3  has tags built-in?</p>
<p>The answer, my friends, is that most of my blogs are still running on 2.2.x,  and that is because <a href="news-views/fantastico-now-offers-wordpress-22-upgrade-and-install/">I  try to install all my WordPress sites with Fantastico</a>, and Fantastico  has still not upgraded to 2.3. But once I&#8217;ve got my Simple Tagging tags in my  new blog, they can be automatically integrated into 2.3&#8242;s tagging system once I  upgrade.</p>
<p>I finally figured out how to move the whole blog, tags and all, using  phpMyAdmin, so here are the directions in case anyone else may find they need  them. These directions can be applied to migrating any plugin databases to an  entirely new installation. Before you do any of this, backup ALL database files,  and pray that nothing gets screwed up:</p>
<ol>
<li>Log in to phpMyAdmin for the old site. You can do this through your Control  Panel, or I guess through complicated server commands. I&#8217;m a Control Panel gal  myself.</li>
<li>Click on the drop-down menu on the left and select the right database, or  click on Databases in the main window, and then click on the database. You will  now see a list of all the tables in this database.</li>
<li>Click on the Export tab at the top of the page.</li>
<li>There is an Export box at the top right-hand side of the main window. It  lists all available tables in the database. Select the following by holding down  Ctrl and clicking: wp_categories, wp_comments, wp_link2cat, wp_links,  wp_post2cat, wp_post2tag (this is a Simple Tagging (ST) table), wp_postmeta,  wp_posts, wp_stp_tags (ST table), wp_tags (ST table), wp_tag_synonyms (ST  table), wp_usermet, wp_users. If you&#8217;re doing this for other plugin tables, just  ignore the tables above that say (ST table) after them, and look for unique  databases that are not in the list above (except wp_options &#8211; see below to find  out why).</li>
<li>Leave all the other options as they are, click on Save as file, leave the  File name template as is, Compression can be None or zipped or gzipped &#8211; if your  databases are really big, you might want to choose zip or gzipped so that the  download (and later the upload), won&#8217;t take so long.</li>
<li>Click Go.</li>
<li>Save this file somewhere where you can find it easily.</li>
<li>Now, go to the other database in phpMyAdmin. Depending on how your sites are  set up, you may be able to access the database where you are right now, or you  may need to login to phpMyAdmin somehwere else.</li>
<li>Once you have clicked on the correct database, delete all the tables that  have the same name as the ones listed above in step 4. The reason for this is  that you are going to be importing the tables from the old blog, and when  phpMyAdmin sees a file with the same name, it won&#8217;t import it and will skip it.  In short, phpMyAdmin does not synchronize tables. To delete the files quickly,  select each table you want to delete by checking the box on the left of it, and  then scroll to the bottom of the list of tables to a drop-down box that says  &#8220;With selected:&#8221;. Click on that, and select Drop. That will delete all the  selected tables.</li>
<li>Now, click Import. Under File to Import, browse to find the file you  exported in Steps 4-6. Leave all the other settings, and press Go.</li>
</ol>
<p>That&#8217;s it! Now hopefully your new blog works and has all the info from the  old one. If it doesn&#8217;t, you&#8217;ll just restore all your backups and try again!</p>
<p>You may have noticed that we ignored a table in both blogs called wp_options.  The reasons for this is that it seems that this file records the domain and URL  for the blog. So if your old blog was at www.mydomain.com, and your new one is  at www.yourdomain.com, the first domain will appear in the second blog. This can  screw things up pretty royally in terms of folders and files for the blog.  Believe me, I know. At one point I couldn&#8217;t even get into the Options page in  the WordPress admin anymore.</p>
<p>I hope I didn&#8217;t miss anything in the steps, and I hope this helps!</p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/">Transferring Simple Tagging tags into another WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/transferring-simple-tagging-tags-into-another-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

