<?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>Great Tasting Java &#187; System Admin</title>
	<atom:link href="http://www.greattastingjava.com/wordpress/index.php/category/system-admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greattastingjava.com/wordpress</link>
	<description>Headley Williamson's Java code, answers, tutorials, and courses</description>
	<lastBuildDate>Wed, 21 Jul 2010 17:15:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Upgrading WordPress</title>
		<link>http://www.greattastingjava.com/wordpress/index.php/2008/11/19/upgrading-word-press/</link>
		<comments>http://www.greattastingjava.com/wordpress/index.php/2008/11/19/upgrading-word-press/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 19:06:01 +0000</pubDate>
		<dc:creator>hwilliamson</dc:creator>
				<category><![CDATA[System Admin]]></category>

		<guid isPermaLink="false">http://www.greattastingjava.com/wordpress/index.php/2008/11/19/upgrading-word-press/</guid>
		<description><![CDATA[1. Deactivate Plugins
2. Back up DB
mysqldump -u[username] -p[password] &#8211;opt datanamename > databasename.sql
3. copy wordpress folder
cp wordpress wordpress.save
4. download latest wordpress and extract
http://Wordpress.org
5. delete wordpress folder
rm -rf wordpress
4. upload new word press folder
6. Run upgrade program
http://example.com/wordpress/wp-admin/upgrade.php
You will have to create a new wp-config.php file during upgrade,
Look at your old config file  for the correct settings.
cat [...]]]></description>
			<content:encoded><![CDATA[<p>1. Deactivate Plugins<br />
2. Back up DB<br />
mysqldump -u[username] -p[password] &#8211;opt datanamename > databasename.sql</p>
<p>3. copy wordpress folder<br />
cp wordpress wordpress.save</p>
<p>4. download latest wordpress and extract<br />
http://Wordpress.org</p>
<p>5. delete wordpress folder<br />
rm -rf wordpress</p>
<p>4. upload new word press folder</p>
<p>6. Run upgrade program<br />
http://example.com/wordpress/wp-admin/upgrade.php</p>
<p>You will have to create a new wp-config.php file during upgrade,<br />
Look at your old config file  for the correct settings.</p>
<p>cat wordpress.save/wp-config.php </p>
<p>7. Go to admin screen and set the theme to the default theme</p>
<p>http://example.com/wordpress/wp-admin</p>
<p>8. View site.</p>
<p>9 Copy over Themes</p>
<p>cp wordpress.save/wp-content/themes/* wordpress/wp-content/themes</p>
<p>10. Copy over Plugins</p>
<p>cp wordpress.save/wp-content/plugins/* wordpress/wp-content/plugins</p>
<p>11. Set theme to normal theme</p>
<p>12. Activate Plugins.</p>
<p>13. Edit wordpress config file<br />
and change the following variables to something complicated.<br />
here are some examples<br />
 define(&#8217;AUTH_KEY&#8217;, &#8216;:dr+ytru%/5V4sAUG-gg%aS*v;&#038;xGhd%{YKC^Z7KKGh j>k[.Nf$y7iGKytutrdJ3c*[Kr5Bg');<br />
 define('SECURE_AUTH_KEY', 'TufWOuA _.t>#+hA?^|3RfGTm>@*+S=8ytruytu\"\'+\"}]<m #+}V)p:Qi?jXLq,<h\\`39m_(');<br />
 define('LOGGED_IN_KEY', 'Styut~AACm4h1;T^\"qW3_8Zv!Ji=y|)~5i63JI |Al[(<YS&lt;2V^$T])=8Xh2a:b:}U_E');</p>
<p>If this does not work to put things back..</p>
<p>     1. Remove wordpress folder<br />
         rm -rf wordpress<br />
     2 Copy saved wordpress folder back<br />
         cp wordpress.save  wordpress<br />
     3. drop database using PhpMyadmin<br />
     4. Reload database<br />
        mysql -u[user] -p[password]  datanamename < databasename.sql</p>
<p></u></m></p>
]]></content:encoded>
			<wfw:commentRss>http://www.greattastingjava.com/wordpress/index.php/2008/11/19/upgrading-word-press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating Websites with databases</title>
		<link>http://www.greattastingjava.com/wordpress/index.php/2008/11/18/migrating-websites-with-databases/</link>
		<comments>http://www.greattastingjava.com/wordpress/index.php/2008/11/18/migrating-websites-with-databases/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 22:21:00 +0000</pubDate>
		<dc:creator>hwilliamson</dc:creator>
				<category><![CDATA[System Admin]]></category>

		<guid isPermaLink="false">http://www.greattastingjava.com/wordpress/index.php/2008/11/18/migrating-websites-with-databases/</guid>
		<description><![CDATA[1. Create &#8216;table&#8217; folder on old website.
2. Sql dump all databases
cd &#8230;/&#8217;table&#8217;
mysqldump -u[username] -p[password] &#8211;opt datanamename > databasename.sql
3. FTP all files/folders to local PC
4. Create new folder &#8220;sitename&#8221; on new site
4.5 add domain name
6. FTP all the files to new site in sitename folder
7. create new database in phpmyadmin
8.  on new site in tables [...]]]></description>
			<content:encoded><![CDATA[<p>1. Create &#8216;table&#8217; folder on old website.</p>
<p>2. Sql dump all databases</p>
<p>cd &#8230;/&#8217;table&#8217;<br />
mysqldump -u[username] -p[password] &#8211;opt datanamename > databasename.sql</p>
<p>3. FTP all files/folders to local PC</p>
<p>4. Create new folder &#8220;sitename&#8221; on new site</p>
<p>4.5 add domain name</p>
<p>6. FTP all the files to new site in sitename folder</p>
<p>7. create new database in phpmyadmin</p>
<p>8.  on new site in tables folder sql load all databases<br />
	mysql -u[username] -p[password] datanamename < databasename.sql</p>
<p>9. check database in phpmyadmin</p>
<p>10. change password in on config files</p>
<p>11. Test Website.</p>
<p>12. change the DNS settings for site</password>
]]></content:encoded>
			<wfw:commentRss>http://www.greattastingjava.com/wordpress/index.php/2008/11/18/migrating-websites-with-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recover when windows XP won&#8217;t boot after a defrag.</title>
		<link>http://www.greattastingjava.com/wordpress/index.php/2006/01/11/how-to-recover-when-windows-xp-wont-boot-after-a-defrag/</link>
		<comments>http://www.greattastingjava.com/wordpress/index.php/2006/01/11/how-to-recover-when-windows-xp-wont-boot-after-a-defrag/#comments</comments>
		<pubDate>Thu, 12 Jan 2006 00:23:54 +0000</pubDate>
		<dc:creator>hwilliamson</dc:creator>
				<category><![CDATA[System Admin]]></category>

		<guid isPermaLink="false">http://www.greattastingjava.com/wordpress/2006/01/11/how-to-recover-when-windows-xp-wont-boot-after-a-defrag/</guid>
		<description><![CDATA[Over the weekend, my laptop was running slow so I decided to run defrag after about 10 hours of it running I decided to cancel the defrag and rebooted my system. The system gave an error similar to &#8220;Windows XP can not boot required DLL missing&#8221;.

So these are the steps used to recover my system.
1. [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend, my laptop was running slow so I decided to run defrag after about 10 hours of it running I decided to cancel the defrag and rebooted my system. The system gave an error similar to &#8220;Windows XP can not boot required DLL missing&#8221;.<br />
<span id="more-14"></span><br />
So these are the steps used to recover my system.<br />
1.  I inserted my windows XP installation disk and rebooted my laptop.<br />
2. When my laptop was booting I pressed the required key to have it boot from CD drive, instead of booting from the hard drive.<br />
3. After the Windows XP booted from CD, I ran the “Recovery Console” (Press R from the menu)<br />
4. I typed: Chkdsk<br />
5. I typed: bootcfg /rebuild<br />
6. Then I rebooted and it worked.</p>
<p><tags><br />
recovery, windows xp, defrag, booting<br />
</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://www.greattastingjava.com/wordpress/index.php/2006/01/11/how-to-recover-when-windows-xp-wont-boot-after-a-defrag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
