<?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>John Ricard &#187; Web Design</title>
	<atom:link href="http://johnricard.net/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnricard.net</link>
	<description>Mens Sana In Computatore Sano</description>
	<lastBuildDate>Thu, 01 Apr 2010 04:17:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom:link rel="next" href="http://johnricard.net/category/web-design/feed/?page=2" />

		<item>
		<title>Migrating From Invisionfree to SMF</title>
		<link>http://johnricard.net/2009/04/migrating-from-invisionfree-to-smf/</link>
		<comments>http://johnricard.net/2009/04/migrating-from-invisionfree-to-smf/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 01:36:39 +0000</pubDate>
		<dc:creator>John Ricard</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[invision free]]></category>
		<category><![CDATA[invision power boards]]></category>
		<category><![CDATA[IPB 1.1.3]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[simple machines forum]]></category>
		<category><![CDATA[SMF]]></category>

		<guid isPermaLink="false">http://johnricard.net/?p=264</guid>
		<description><![CDATA[I had the hardest time doing this conversion mostly because one thing was not made clear up front &#8211; if you want to convert from Invisionfree (using IPB 1.1.3) to new software like Simple Machines Forum, then you have to have access to both databases on the same server.
This is an impossibilty for IF. Since it is a free hosting solution, you can&#8217;t have access to the database. In fact, the only way you can get your data is by paying for it and getting a raw SQL dump.
So, what ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I had the hardest time doing this conversion mostly because one thing was not made clear up front &#8211; if you want to convert from Invisionfree (using IPB 1.1.3) to new software like Simple Machines Forum, then you have to have access to both databases on the same server.</p>
<p>This is an impossibilty for IF. Since it is a free hosting solution, you can&#8217;t have access to the database. In fact, the only way you can get your data is by paying for it and getting a raw SQL dump.</p>
<p>So, what to do?</p>
<p>In this article, I will detail what you need to do to migrate your data from IF to SMF. Know this upfront &#8211; it can be done and it can be done relatively easy if you know what you are doing. Here we go.</p>
<p><strong>Necessary Materials</strong></p>
<p>You will need the following:</p>
<ul>
<li>Data dump from IF board &#8211; explained in a moment</li>
<li><a title="XAMPP Apache server allows you to locally run software for site-building" href="http://www.apachefriends.org/en/xampp.html" target="_blank">Xampp</a></li>
<li><a title="Download IPB 1.1.3" href="http://byet.net/showthread.php?t=5032" target="_blank">IPB 1.1.3</a></li>
<li><a title="SMF 1.1.8" href="http://download.simplemachines.org/" target="_blank">SMF 1.1.8</a></li>
<li>Converter for SMF 1.1.8 to IF &#8211; <a title="Converter from Invision to SMF 1.1.8 ZIP file" href="http://download.simplemachines.org/index.php?thanks;filename=smf_1-1-8_invision_converter.zip">zip file</a> or <a title="Converter for Invision 1.1.3 to SMF 1.1.8 TAR file" href="http://download.simplemachines.org/index.php?thanks;filename=smf_1-1-8_invision_converter.tar.gz">tar.gz file</a></li>
<li>An FTP program to upload files [<a title="Filezilla" href="http://filezilla-project.org/download.php?type=server" target="_blank">Filezilla</a>]</li>
<li>A hosting option in place</li>
</ul>
<p>You need to make sure that you have installed on your host:</p>
<ul>
<li><a title="Phpmyadmin" href="http://www.phpmyadmin.net/home_page/downloads.php" target="_blank">Phpmyadmin</a> &#8211; to interface with the MySQL database (You should really have a hosting option in place that has either Phpmyadmin already installed for you or you have some kind of access to your SQL database)</li>
</ul>
<p>Once you have all of these essential pieces, you are ready to go.</p>
<p><strong>Step One</strong> &#8211; Getting Old Data</p>
<p>First of all, get your SQL dump from IF (Invisionfree). You will need to log into your admin cp and create a support ticket. There, ask to get the data dump for a conversion &#8211; the price will vary depending on the size of your board but it is a worthy investment. You worked hard to build your board, now it is time to get all that data together.</p>
<p>Once you go through PayPal and make your payment, post in your support ticket your confirmation number of the payment and stay on top of them to make sure you get your data as quickly as possible. Once you do this, I recommend that you also put your board offline so as to not acquire any new posts (you can always put a message up there saying you are migrating, etc.).</p>
<p>You will receive a URL with a link where your data is located. Navigate to that site and the copy and paste everything there into a .txt file. Save it to your harddrive so you have a backup copy.</p>
<p><strong>Step Two</strong> &#8211; Setting up a Local Network</p>
<p>This next step is somewhat complicated but also very easy if you look at it in basic steps. What you are trying to accomplish here is creating a local network of sorts on your computer. This is where Xampp comes in. You have to install it and run it and make sure all components are working. I am going to assume you know how to do this, if not check out their documentation for help and support.</p>
<p>Once you get Xampp running on your computer, you will need to go into the MySQL portion of it and activate 2 databases (one for your SMF and one for your IPB). Make sure you retain the pertinent information (database name, user ID &#8211; should be &#8216;root&#8217; and password &#8211; which whould be left alone).</p>
<p>Next, you will need to install both SMF 1.1.8 and IPB 1.1.3 on your computer under the Xampp system (you will need to paste the files you need for a fresh install under a folder in the Xampp file &#8211; something like &#8220;htdoc&#8221;)</p>
<p>Connect your SMF and IPB boards to their SQL dbs and complete installations. (If you are having trouble installing the IPB 1.1.3 software it is probably due to the fact that it was written for PHP 4.x, not 5.x. You may notice problems with the sm_install.php file, for example. Check out these links: <a title="IPB 1.1.3 install fixes" href="http://forums.invisionize.com/Can-t-install-IPB-131-on-Apache2-PHP5-MySQL5-t94693.html" target="_blank">sm_install.php fixes</a> and <a title="IPB 1.1.3 source file fixes" href="http://forums.invisionize.com/ipb-13-on-mysql-5x-t92976.html" target="_blank">other file source fixes</a>.)</p>
<p>That completes the hardest part!</p>
<p><strong>Step Three</strong> &#8211; Conversion on Local Machine</p>
<p>First, take your SQL data dump (the .txt file or .sql file you saved it under) and import it to your new database for your IPB 1.1.3. Using Phpmyadmin, all you have to do is log in and look for the SQL button, click it, and navigate to &#8220;Import&#8221;. Once there, click on &#8220;Browse&#8221; and upload your data. Click &#8220;Go&#8221; and let your computer do its thing. This may take a while if you have a large board. Once it is done and everything is uploaded, check out your board and make sure everything is there &#8211; tables and all. Your skin (theme, look of board) will not look the same as your old board (you are migrating from) because you just did a fresh install of IPB without uploading all those modifications you may have made.</p>
<p>Now you want to convert your data from IPB (IF) to SMF. You will need to take the converter you downloaded and upload it to the root folder where you have your SMF software located (ex: something like http://localhost/SMF&#8230;whereever you placed your root folder).</p>
<p>Navigate to /convert.php and you will see the page to convert from IPB 1.1.3 to SMF 1.1.8. Enter in the appropriate information (the program should auto-detect your server paths for both the SMF upload and the IPB upload). Click on the button at the bottom right to proceed.</p>
<p>The php file (convert.php) will automatically convert your IPB data into SMF. Once it is done, check out your local copy of SMF to make sure everything is there. Try logging in, etc. All there? Good. On to the final step!</p>
<p><strong>Step Four</strong> &#8211; Uploading Converted Data</p>
<p>Now, to upload your newly converted data, you have got to get it off of your SMF local program. Easy. Navigate to Admin &gt; Maintenance &gt; Forum Maintenance &gt; Backup Database.</p>
<p>Once you are there, you will want to make two copies of backup &#8211; one without a check being placed in the &#8220;Save the table structure&#8221; and one with a check IN &#8220;Save the table structure&#8221;. Use the latter to upload.</p>
<p>Final step &#8211; so pay attention. Navigate to your hosted SMF&#8217;s SQL database. Log in. Look for the &#8220;SQL&#8221; button (assuming you are using Phpmyadmin here, too) and look for that &#8220;Import&#8221; feature again. Click &#8220;Browse&#8221; and upload the COMPLETE backup you made from your local SMF program. Click &#8220;Go&#8221; and let it fly.</p>
<p>This should give you a brand new SMF board with YOUR DATA uploaded and ready to go. Check out the system, make sure everything is there. Once it is, go LIVE and live the good life!</p>
<p>If you have any questions or comments, please leave them here in the comment section. I&#8217;d like to thank all the independent developers out there in the open source world that made this kind of thing possible and easier to learn that perhaps we can acknowledge. I had to hunt and peck for my solutions which I stated here step by step &#8211; but most of this stuff was out there waiting to be accessed.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2009/04/migrating-from-invisionfree-to-smf/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2009/04/migrating-from-invisionfree-to-smf/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2009%2F04%2Fmigrating-from-invisionfree-to-smf%2F&amp;linkname=Migrating%20From%20Invisionfree%20to%20SMF"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2009/04/migrating-from-invisionfree-to-smf/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Upgraded to WP 2.7</title>
		<link>http://johnricard.net/2008/12/upgraded-to-wp-27/</link>
		<comments>http://johnricard.net/2008/12/upgraded-to-wp-27/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 00:59:44 +0000</pubDate>
		<dc:creator>John Ricard</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress 2.7]]></category>

		<guid isPermaLink="false">http://johnricard.net/?p=217</guid>
		<description><![CDATA[Just upgraded to Wordpress&#8217;s new 2.7 software. Looks great as they have totally overhauled the backend and the way you can use the admin cp.
Haven&#8217;t tested out all the bugs yet and get a feel for it, but there are a few problems that you should be wary of off the bat. Not all plug-ins work &#8211; so before you upgrade, make sure you deactivate all plugins.
For example, the Drop-Down Admin plugin and the Tiny MCE Advanced plugins were not compatible with my 2.7 upgrade. I wasn&#8217;t able to access ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Just upgraded to Wordpress&#8217;s new 2.7 software. Looks great as they have totally overhauled the backend and the way you can use the admin cp.</p>
<p>Haven&#8217;t tested out all the bugs yet and get a feel for it, but there are a few problems that you should be wary of off the bat. Not all plug-ins work &#8211; so before you upgrade, make sure you deactivate all plugins.</p>
<p>For example, the Drop-Down Admin plugin and the Tiny MCE Advanced plugins were not compatible with my 2.7 upgrade. I wasn&#8217;t able to access the left side menu on the admin cp (Drop Down Admin must have negated that somehow as when I deactivated it, I found it) and I couldn&#8217;t access the &#8220;visual&#8221; feature for posts (it seems the Tiny MCE Advanced plugin conflicted as well).</p>
<p>I have now deactivated all plugins and will bring each one online one by one in order to see which work.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/12/upgraded-to-wp-27/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/12/upgraded-to-wp-27/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F12%2Fupgraded-to-wp-27%2F&amp;linkname=Upgraded%20to%20WP%202.7"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/12/upgraded-to-wp-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embed YouTube Videos into Wordpress MU</title>
		<link>http://johnricard.net/2008/11/embed-youtube-videos-into-wordpress-mu/</link>
		<comments>http://johnricard.net/2008/11/embed-youtube-videos-into-wordpress-mu/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 04:15:21 +0000</pubDate>
		<dc:creator>John Ricard</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://johnricard.net/?p=140</guid>
		<description><![CDATA[I am in love with Wordpress MU, as most of you know out there. Love it, love it, love it. I get giddy just thinking about it.
That said, there are a lot of limitations. For starters, you have to modify themes you upload on your computer then upload the modified version to be used on your site &#8211; and since your MU site will host endless blogs over it, you can really only use one theme for all your sites. If you wanted to make any changes to an individual ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I am in love with Wordpress MU, as most of you know out there. Love it, love it, love it. I get giddy just thinking about it.</p>
<p>That said, there are a lot of limitations. For starters, you have to modify themes you upload on your computer then upload the modified version to be used on your site &#8211; and since your MU site will host endless blogs over it, you can really only use one theme for all your sites. If you wanted to make any changes to an individual theme, you would have to customize it then upload it for that particular blog. But, I am sure there is a way around all of that but I digress.</p>
<p>For now, I want to show you what I found as to how to embed videos to your posts on your blogs in Wordpress MU. You have to just download a file and manipulate a little code.</p>
<p>Using your favorite editing software, download the file kses.php from your MU install (wp-includes/kses.php). Search for the code that looks like:</p>
<pre>add_filter('content_save_pre', 'wp_filter_post_kses');</pre>
<p>And simply comment it out like this:</p>
<pre>add_filter('content_save_pre', 'wp_filter_post_kses');</pre>
<p>Upload the modified kses.php file and voila! You are ready to embed video to your MU blog posts!</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/11/embed-youtube-videos-into-wordpress-mu/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/11/embed-youtube-videos-into-wordpress-mu/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F11%2Fembed-youtube-videos-into-wordpress-mu%2F&amp;linkname=Embed%20YouTube%20Videos%20into%20Wordpress%20MU"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/11/embed-youtube-videos-into-wordpress-mu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.6.3 Is Out</title>
		<link>http://johnricard.net/2008/10/wordpress-263-is-out/</link>
		<comments>http://johnricard.net/2008/10/wordpress-263-is-out/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 04:17:13 +0000</pubDate>
		<dc:creator>John Ricard</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Wordpress 2.6.3]]></category>

		<guid isPermaLink="false">http://johnricard.net/?p=71</guid>
		<description><![CDATA[Another call for upgrades. After recently releasing version 2.6.2, and annoying the heck out of me to upgrade, Wordpress goes and releases version 2.6.3. And yes, annoys the heck out of me by telling me to upgrade.
However, it is simple to do an upgrade. Wordpress gives you their handy Three Step Guideline. Simply put it is:

Unzip the file
Upload the latest contents of the wp-includes and the wp-admin folders.
Upload the root contents of the latest version (ex: index.php, license.txt, readme.html, wp-app.php, etc.)

Don&#8217;t just overwrite your current wp-content folder with the new ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Another call for upgrades. After recently releasing version 2.6.2, and annoying the heck out of me to upgrade, <a title="Download Wordpress 2.6.3" href="http://wordpress.org/latest.zip" target="_blank">Wordpress goes and releases version 2.6.3</a>. And yes, annoys the heck out of me by telling me to upgrade.</p>
<p>However, it is simple to do an upgrade. Wordpress gives you their handy <a title="Wordpress 3 Step Guide to Upgrading" href="http://codex.wordpress.org/Upgrading_WordPress" target="_blank">Three Step Guideline</a>. Simply put it is:</p>
<ol>
<li>Unzip the file</li>
<li>Upload the latest contents of the wp-includes and the wp-admin folders.</li>
<li>Upload the root contents of the latest version (ex: index.php, license.txt, readme.html, wp-app.php, etc.)</li>
</ol>
<p>Don&#8217;t just overwrite your current wp-content folder with the new wp-content folder (from version 2.6.3) because you will overwrite everything and that could mess up any modifications you may have made (plugins, themes, etc.). Those files must be handled one by one.</p>
<p>Then finally, just log back in to you admin panel (<code>http://example.com/wordpress/wp-admin/upgrade.php</code>) and you should be set. If not, you may have to take the settings from your old config.php file and write them to the new config file (wp-config-sample.php, located in the new version files). If that is the case, just simply take your old settings (config.php), place them in the new config file (wp-config-sample.php), rename the new config file (to, you guessed it, config.php) and then upload it (overwrite when asked). That should do the trick.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/10/wordpress-263-is-out/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/10/wordpress-263-is-out/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F10%2Fwordpress-263-is-out%2F&amp;linkname=Wordpress%202.6.3%20Is%20Out"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/10/wordpress-263-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Your InvisionFree Board to SMF</title>
		<link>http://johnricard.net/2008/06/converting-your-invisionfree-board-to-smf/</link>
		<comments>http://johnricard.net/2008/06/converting-your-invisionfree-board-to-smf/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 16:10:07 +0000</pubDate>
		<dc:creator>John Ricard</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[data conversion]]></category>
		<category><![CDATA[data converter]]></category>
		<category><![CDATA[invision free]]></category>
		<category><![CDATA[invision power boards]]></category>
		<category><![CDATA[simple machines forum]]></category>

		<guid isPermaLink="false">http://johnricard.net/?p=32</guid>
		<description><![CDATA[This is something I had to grapple with recently, but for the &#8220;hobbyist&#8221; web designer, as I consider myself, this is how you do it step by step.
You will need a couple of things before you begin.

An InvisionFree message board (IF).
The latest installed version of Simple Machines Forum (SMF) on your host.
Access to your MySQL database (password is enough).
The InvisionFree to SMF converter.

Once you have all these necessary items, begin by reading the next section.
Step 1 Uploading the Converter Packet
Using your FTP, upload all the IF to SMF converter files ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>This is something I had to grapple with recently, but for the &#8220;hobbyist&#8221; web designer, as I consider myself, this is how you do it step by step.</p>
<p>You will need a couple of things before you begin.</p>
<ol>
<li>An <a title="InvisionFree" href="http://www.invisionfree.com/" target="_blank">InvisionFree message board</a> (IF).</li>
<li>The latest installed version of <a title="Simple Machines Forum" href="http://www.simplemachines.org/" target="_blank">Simple Machines Forum</a> (SMF) on your host.</li>
<li>Access to your MySQL database (password is enough).</li>
<li>The <a title="Invision to SMF converter" href="http://www.marlinsnation.com/assets/smf_1-1-2_invision_converter.zip">InvisionFree to SMF converter</a>.</li>
</ol>
<p>Once you have all these necessary items, begin by reading the next section.</p>
<p><strong>Step 1 Uploading the Converter Packet</strong></p>
<p>Using your <a title="Smart FTP" href="http://www.smartftp.com/" target="_blank">FTP</a>, upload all the IF to SMF converter files &#8211; there are basically two for this process. Since you are using an IF board, you will have retrieved the converters for IPB (Invision Power Board) 1.3. IF, previously, was using IPB as the basis for their free system, and the IPB version was from 2003 (!). So the converter packet will reflect this.</p>
<p>Take both files (convert.php and invision_to_smf.sql) and upload them to the same directory as your SMF is installed on your host (should be something like www.yourexample.com/forum).</p>
<p><strong>Step 2 Getting the old IF data</strong></p>
<p>You will need both the path to the SMF board you installed and the path to where you data is on the old board at IF. To do this, you must log into your Admin CP at your old IF board and navigate to InvisionFree Network &gt; Support Ticket. Once there, request your data from your old IF board &#8211; you will have to pay a fee, depending on the size of your board (IF support takes PayPal). They will provide you with a link &#8211; very important (see next step).</p>
<p><strong>Step 3 Accessing the Converter</strong></p>
<p>Now you can begin the conversion, which is simple. Navigate to where you uploaded your converter packet &#8211; again, it is the same file on your server as where the SMF board is located: www.yoursite.com/forum/convert.php. It should loook something like that.</p>
<p>Once there, you will be asked for the path of your SMF board (it should auto-detect that) and the path of your old board (use the link that IF support gave you for your data dump). Type in the password to MySQL and voila! You just made your conversion, you little genius!</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/06/converting-your-invisionfree-board-to-smf/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/06/converting-your-invisionfree-board-to-smf/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F06%2Fconverting-your-invisionfree-board-to-smf%2F&amp;linkname=Converting%20Your%20InvisionFree%20Board%20to%20SMF"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/06/converting-your-invisionfree-board-to-smf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing out PodPress</title>
		<link>http://johnricard.net/2008/01/testing-out-podpress/</link>
		<comments>http://johnricard.net/2008/01/testing-out-podpress/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 02:30:52 +0000</pubDate>
		<dc:creator>johnricard</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://johnricard.org/blog3/?p=15</guid>
		<description><![CDATA[Just uploaded a new plugin that makes it very easy to upload podcasts and get them online at Itunes. I uploaded an mp3 by Embrace, the song is &#8220;No Use Crying&#8221;. Pretty great song. Check it out. Also, if you&#8217;re a WordPress user, give a shout out to the people at MightySeek for me, they created a pretty dang useful tool.
Sphere: Related Content]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Just uploaded a new plugin that makes it very easy to upload podcasts and get them online at Itunes. I uploaded an mp3 by <a target="_blank" title="Embrace" href="http://www.embrace.co.uk/">Embrace</a>, the song is &#8220;No Use Crying&#8221;. Pretty great song. Check it out. Also, if you&#8217;re a <a target="_blank" title="WordPress" href="http://wordpress.org/">WordPress</a> user, give a shout out to the people at <a target="_blank" title="Mighty Seek's PodPress" href="http://www.mightyseek.com/podpress/">MightySeek</a> for me, they created a pretty dang useful tool.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/01/testing-out-podpress/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/01/testing-out-podpress/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F01%2Ftesting-out-podpress%2F&amp;linkname=Testing%20out%20PodPress"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/01/testing-out-podpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Working on new themes&#8230;</title>
		<link>http://johnricard.net/2008/01/working-on-new-themes/</link>
		<comments>http://johnricard.net/2008/01/working-on-new-themes/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 17:21:55 +0000</pubDate>
		<dc:creator>johnricard</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://johnricard.org/blog3/2008/01/27/working-on-new-themes/</guid>
		<description><![CDATA[Well, things will be changing quite a bit on my website here. This is not only to let you, my dear reader, know but also to document what the heck I was doing on my Sunday afternoon off.
To update your themes for Wordpress, you have to go and find new themes. You can do that here.
The next thing you need to do is download the file to your computer. Once you have done that, unzip/decompress the file so you have it ready for upload.
Then, finally, upload via your FTP to ...]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Well, things will be changing quite a bit on my website here. This is not only to let you, my dear reader, know but also to document what the heck I was doing on my Sunday afternoon off.</p>
<p>To update your themes for Wordpress, you have to go and find new themes. You can do that <a target="_blank" title="Wordpress Themes" href="http://themes.wordpress.net/">here</a>.</p>
<p>The next thing you need to do is download the file to your computer. Once you have done that, unzip/decompress the file so you have it ready for upload.</p>
<p>Then, finally, upload via your FTP to your website&#8217;s server. You need to locate the file wp-content/themes. That is where all your default themes are. Upload the unzipped/decompressed theme files there.</p>
<p>Next, your login to your Wordpress ACP (admin control panel). Go to Presentation and select your themes there. Voila! New digs!</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://johnricard.net/2008/01/working-on-new-themes/')" href="http://www.sphere.com/search?q=sphereit:http://johnricard.net/2008/01/working-on-new-themes/">Sphere: Related Content</a></span><br/><br/><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjohnricard.net%2F2008%2F01%2Fworking-on-new-themes%2F&amp;linkname=Working%20on%20new%20themes%26%238230%3B"><img src="http://johnricard.net/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://johnricard.net/2008/01/working-on-new-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
