<?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>Jason Stone - Geek in SoCal &#187; How to</title>
	<atom:link href="http://jasonstone.name/taxonomy/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonstone.name</link>
	<description>Computer geek and Photography enthusiast</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:52:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to contact Jason Stone</title>
		<link>http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/</link>
		<comments>http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 23:15:34 +0000</pubDate>
		<dc:creator>Jason Stone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Photog]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[jason]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2008/03/07/how-to-contact-jason-stone/</guid>
		<description><![CDATA[I can&#8217;t remember if I have mentioned this already, but the contact form on my blog works now. So anyone who would like to contact Jason Stone about geek related stuff or my photography, you can send me a message on my contact form. Copyright &#169; 2010 Jason Stone. Visit the original article at http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/.]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t remember if I have mentioned this already, but the contact form on my blog works now. So anyone who would like to <a href="http://jasonstone.name/contact/" title="contact Jason Stone">contact Jason Stone</a> about geek related stuff or my photography, you can send me a message on my <a href="http://jasonstone.name/contact/" title="contact me">contact form</a>. </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">Jason Stone</a>. Visit the original article at <a href="http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/">http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2008/03/07/how-to-contact-jason-stone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Backup DacEasy data automatically for multiple companies 3</title>
		<link>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</link>
		<comments>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/#comments</comments>
		<pubDate>Wed, 16 May 2007 16:00:05 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[batch-files]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</guid>
		<description><![CDATA[How to Backup DacEasy data automatically for multiple companies part 3 using windows batch files]]></description>
			<content:encoded><![CDATA[<p>You might want to read the previous articles before proceeding:<br />
<strong>Part 1</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">Need a Quicker way to backup DacEasy Data?</a><br />
<strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a></p>
<p>are not familiar with running batch files in windows, please consider an alternative.</p>
<p class="new">Create a new folder on your C:\ drive called <strong>dacBackup</strong></p>
<p>Copy the following code into a new file called &#8220;dacBackup.cmd&#8221; and save it in the same folder:</p>
<p class="code">:: First, I create a temporary directory to copy the data to.<br />
md c:\dacBackup\DacEasy<br />
:: Copy each of the individual modules from<br />
:: their working directories to the temporary directory.<br />
(xcopy C:\DacEasy\bc\profiles\DacEasyCompany1 C:\dacBackup\DacEasy\bc\profiles\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\ac\DacEasyCompany1 C:\dacBackup\DacEasy\ac\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\py\DacEasyCompany1 C:\dacBackup\DacEasy\py\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\bc\profiles\DacEasyCompany2 C:\dacBackup\DacEasy\bc\profiles\DacEasyCompany2 /I /E /V /Y<br />
xcopy C:\DacEasy\ac\DacEasyCompany2 C:\dacBackup\DacEasy\ac\DacEasyCompany2 /I /E /V /Y<br />
xcopy C:\DacEasy\py\DacEasyCompany2 C:\dacBackup\DacEasy\py\DacEasyCompany2 /I /E /V /Y<br />
) &gt; C:\dacBackup\dacCopy.log<br />
:: By enclosing the XCOPY commands in parenthesis, I<br />
:: can create a single log file of every command within<br />
:: the group. This logfile is created and saved as<br />
:: &#8220;C:\dacBackup\dacCopy.log&#8221;<br />
@echo off<br />
:: Set Variables<br />
set Today=%Date:~4,2%-%Date:~7,2%-%Date:~10,4%<br />
set fileName=DacBackup<br />
set dDay=%Date:~0,3%<br />
set BackupFolder=C:\dacBackup<br />
set BackupFile=%BackupFolder%\%fileName%(%dDay%)Full.bkf<br />
set JobName=%Today% DacEasy Backup<br />
set Description=DacEasy Backup %Today%<br />
:: Back up Files and Shares<br />
C:\windows\system32\ntbackup.exe backup &#8220;C:\dacBackup\DacEasy&#8221; /n &#8220;DacEasy Backup %Today%&#8221; /d &#8220;%Description%&#8221; /v:yes /r:no /rs:no /hc:off /m normal /j &#8220;%JobName%&#8221; /f &#8220;%BackupFile%&#8221;<br />
:: Removes temporary directory<br />
rd /S /Q c:\dacBackup\DacEasy</p>
<p>If you have trouble trying to copy and paste the code above, I have also provided the script for download in 2 different compressed file formats (ZIP and RAR):
</p>
<p class="download">Download <!--download id="2"--></p>
<p class="download">Download <!--download id="3"--></p>
<p class="construction">If you choose to download one of the compressed files, you will have to extract and decompress the file. Windows XP should be able to open ZIP files natively. If you still have trouble extracting the file, you can get a free evaluation of Winzip from their <a href="http://www.winzip.com/">website</a></p>
<p>Don&#8217;t forget to modify the XCOPY commands to point to your actual DacEasy directories.</p>
<p>Once you have finished modifying the &#8220;dacBackup.cmd&#8221; file, you can try it out by double-clicking on it.</p>
<p>If it worked, you will notice a new file inside the dacBackup folder which contains a backup of your DacEasy data folders.</p>
<p class="navigation">
<p class="left"><span>«</span> <strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a></p>
<p class="right"><strong>Part 4</strong> &#8211; <a href="http://jasonstone.name/2007/05/10/add-scheduled-task/">Automating your backup script</a> <span>»</span></p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/">http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup DacEasy data automatically for multiple companies 2</title>
		<link>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</link>
		<comments>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/#comments</comments>
		<pubDate>Tue, 15 May 2007 19:00:10 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[accounting]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[company-profile]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[daceasy13]]></category>
		<category><![CDATA[data-files]]></category>
		<category><![CDATA[job-costing]]></category>
		<category><![CDATA[oe]]></category>
		<category><![CDATA[payroll]]></category>
		<category><![CDATA[profiles]]></category>
		<category><![CDATA[py]]></category>
		<category><![CDATA[windows-2003-server]]></category>
		<category><![CDATA[windows-xp]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</guid>
		<description><![CDATA[since I promised you an easy way to run Backup for DacEasy data automatically for multiple companies, I will try my best to deliver just that; without telling you to go out and buy a $1000+ backup program.]]></description>
			<content:encoded><![CDATA[<p>This solution should work if people are logged in to DacEasy as long as they aren&#8217;t modifying any Employee Information, or running any Transactions.</p>
<p class="information">The default installation directory for DacEasy is:<br />
C:\DacEasy\</p>
<p>Each module that you use in DacEasy should be located in it&#8217;s own folder by default.</p>
<p class="information">Default Module Locations:<br />
Company Profile &#8211; C:\DacEasy\bc\profiles\<br />
Accounting &#8211; C:\DacEasy\ac\<br />
Payroll &#8211; C:\DacEasy\py\<br />
Job Costing &#8211; C:\DacEasy\jc\<br />
Order Entry &#8211; C:\DacEasy\oe\<br />
Point of Sale &#8211; C:\DacEasy\ps\</p>
<p>If you need help finding where you installed the modules for your Company Data, check out “<a href="http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/">How To Find DacEasy Module Folder Paths</a>”</p>
<p>If you are using the default folders, you should be able to find individual company modules within each of the default folders by adding the name of the company profile to the end of each module path.</p>
<p>For example, I am going to backup 2 sample businesses called “DacEasyCompany1” and “DacEasyCompany2.” Each of those companies use a <strong>Company Profile</strong>, the <strong>Accounting Module</strong> and the <strong>Payroll Module</strong></p>
<p class="information">Paths to my sample company modules:<br />
C:\DacEasy\bc\profiles\DacEasyCompany1\<br />
C:\DacEasy\ac\DacEasyCompany1\<br />
C:\DacEasy\py\DacEasyCompany1\<br />
C:\DacEasy\bc\profiles\DacEasyCompany2\<br />
C:\DacEasy\ac\DacEasyCompany2\<br />
C:\DacEasy\py\DacEasyCompany2\</p>
<p class="navigation">
<p class="left"><span>«</span> <strong>Part 1</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">Need a Quicker way to backup DacEasy Data?</a></p>
<p class="right"><strong>Part 3</strong> &#8211; “<a href="http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/">Backup DacEasy using a Windows Batch file</a>»</p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup DacEasy data automatically for multiple companies</title>
		<link>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</link>
		<comments>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/#comments</comments>
		<pubDate>Tue, 15 May 2007 16:00:56 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[daceasy]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</guid>
		<description><![CDATA[So you want to know how to backup DacEasy data automatically for multiple companies. I'm guessing that you also want to include more than one module for each company, for example: accounting, payroll and the company profile.  I am also guessing that you would like to have this run daily or weekly according to the backup schedule in your company policies.]]></description>
			<content:encoded><![CDATA[<p>So you want to know how to backup DacEasy data automatically for multiple companies. I&#8217;m guessing that you also want to include more than one module for each company, for example: accounting, payroll and the company profile. I am also guessing that you would like to have this run daily or weekly according to the backup schedule in your company policies.</p>
<p>The good thing about DacEasy is that you don&#8217;t have to buy some complicated backup system that costs thousands of dollars. It already comes with a backup utility installed. The bad thing is it doesn&#8217;t work very well. You can set backup schedules but I have found it much quicker to do it manually. Also, if you have ever done the backup manually, you know how time consuming this can be; especially if you are doing it once a week or even worse, once a day.</p>
<p>Did you know that you can basically copy all of the data files from your DacEasy machine to another computer that is running DacEasy and it would work? Once I knew that I could copy the files, I decided to make a script runs backup consistently and completely automatic.</p>
<p>This guide will help you setup the backup of your data in <a href="http://www.DacEasy.com">DacEasy</a> for multiple companies that will run automatically; without the need to go out and buy an expensive backup program.</p>
<ul class="construction">
<li>This has only been tested on systems running <strong>DacEasy 13</strong> with <strong>Windows XP/2003</strong></li>
<li>Make sure you have the sufficient folder access rights to the DacEasy installation folder</li>
<li>You also need the ability to create &#8220;<strong>Scheduled Tasks</strong>&#8221; and run &#8220;<strong>ntbackup</strong>&#8220;</li>
<li>Basic knowledge of how to use <strong>Windows batch files</strong> is recommended</li>
</ul>
<p class="navigation">
<p class="right"><strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a> <span>»</span></p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Scheduled Task</title>
		<link>http://jasonstone.name/2007/05/10/add-scheduled-task/</link>
		<comments>http://jasonstone.name/2007/05/10/add-scheduled-task/#comments</comments>
		<pubDate>Thu, 10 May 2007 20:41:00 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[add-scheduled-tasks]]></category>
		<category><![CDATA[screen-shots]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/10/add-scheduled-task/</guid>
		<description><![CDATA[How to Add Scheduled Tasks]]></description>
			<content:encoded><![CDATA[<ol>
<li>Click &#8220;Start&#8221;<br />
<img width="57" src="http://jasonstone.name/wp-content/uploads/2007/04/click-start.png" alt="Click Start" height="42" title="Click Start" /></li>
<li>Click &#8220;Control Panel,&#8221; then &#8220;Scheduled Tasks,&#8221; then click &#8220;Add Scheduled Task&#8221;<br />
<a href="http://jasonstone.name/wp-content/uploads/2007/04/add-scheduled-task.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/2007/04/_add-scheduled-task.png" alt="Add Scheduled Task Wizard" height="99" title="Add Scheduled Task Wizard" /></a></li>
<li>Click Next<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-wizard.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-wizard.png" alt="Add Scheduled Task Wizard" height="180" title="Add Scheduled Task Wizard" /></a></li>
<li>Click Browse<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-browse.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-browse.png" alt="Click Browse" height="180" title="Click Browse" /></a></li>
<li>Select file you want to run<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-5-filename.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-5-filename.png" alt="Select file you want to run" height="182" title="Select file you want to run" /></a></li>
<li>Name the scheduled task<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-6-name.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-6-name.png" alt="Name the scheduled task" height="180" title="Name the scheduled task" /></a></li>
<li>Select a Schedule<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-7-when.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-7-when.png" alt="Select a Schedule" height="180" title="Select a Schedule" /></a></li>
<li>Type User Name to run the task<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-8-user.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-8-user.png" alt="Type User Name to run the task" height="180" title="Type User Name to run the task" /></a></li>
<li>Add Scheduled Task Wizard Finished<br />
<a href="http://jasonstone.name/wp-content/uploads/scheduled-backup/add-scheduled-task-9-finish.png"><img width="250" src="http://jasonstone.name/wp-content/uploads/scheduled-backup/_add-scheduled-task-9-finish.png" alt="Add Scheduled Task Wizard Finished" height="180" title="Add Scheduled Task Wizard Finished" /></a></li>
</ol>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/10/add-scheduled-task/">http://jasonstone.name/2007/05/10/add-scheduled-task/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/10/add-scheduled-task/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find DacEasy Module Folder Paths</title>
		<link>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/</link>
		<comments>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/#comments</comments>
		<pubDate>Mon, 07 May 2007 07:53:20 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[company-information]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[installation-path]]></category>
		<category><![CDATA[screen-shots]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/07/find-daceasy-module-folder-paths/</guid>
		<description><![CDATA[When you installed DacEasy, did you write down the installation path for each module? If not, don't worry, it's pretty easy to find. 
Here, I will show you How To Find DacEasy Module Folder Paths in just 4 easy steps (Including screen shots).]]></description>
			<content:encoded><![CDATA[<p>When you installed DacEasy, did you write down the installation path for each module? If not, don&#8217;t worry, it&#8217;s pretty easy to find.<br />
Here, I will show you How To Find DacEasy Module Folder Paths in just 4 easy steps (Including screen shots).</p>
<ol>
<li>Click Profile<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step1-Profile.png" alt="Step1 - Click Profile" height="240" title="Step1 - Click Profile" /></li>
<li>Click Edit<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step2-Edit.png" alt="Step2 - Click Edit" height="240" title="Step2 - Click Edit" /></li>
<li>Click Company Information<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step3-Company-Information.png" alt="Step3 - Click Company Information" height="240" title="Step3 - Click Company Information" /></li>
<li>Click Paths<br />
<img width="575" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step4-Paths.png" alt="Step4 - Click Paths" height="341" title="Step4 - Click Paths" /></li>
</ol>
<p>You should be able to see the DacEasy Module Folder Paths for your company. This is a screen shot of the DacEasy Module Folder Paths for the Sample Profile:<br />
<img width="575" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/DacEasy-Module-Paths.png" alt="DacEasy Module Paths" height="341" title="DacEasy Module Paths" /> </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/">http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed WordPress Database Error with Simple Tagging Plugin</title>
		<link>http://jasonstone.name/2007/03/25/fixed-wordpress-database-error-with-simple-tagging-plugin/</link>
		<comments>http://jasonstone.name/2007/03/25/fixed-wordpress-database-error-with-simple-tagging-plugin/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 09:26:53 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/problems/fixed-wordpress-database-error-with-simple-tagging-plugin/</guid>
		<description><![CDATA[I just downloaded the Simple Tagging 1.6 Plugin today and I got errors when I tried to convert the categories to tags on the import tags section. The following will explain the error, and how to fix it...]]></description>
			<content:encoded><![CDATA[<p>I just downloaded the <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/" title="Simple Tagging Plugin">Simple Tagging 1.6 Plugin</a> today and I got errors when I tried to convert the categories to tags on the import tags section. The following will explain the error, and how I fixed it. (I didn&#8217;t bother to do a search on this problem so someone else may have already posted a fix for it)<br />
To be safe, I downloaded and installed the <a href="http://wordpress.org/extend/plugins/wp-db-backup/" title="WordPress Database Backup Plugin">WordPress Database Backup Plugin</a> and did a backup of the database before running the import tags function like it suggested.<br />
So, once I got Simple Tagging installed, I clicked on the new &#8220;Tags&#8221; section then I clicked the tab labeled &#8220;Import Tags&#8221; and checked the &#8220;I&#8217;ve backed up my database&#8221; checkbox and clicked &#8220;Convert Categories to Tags.&#8221;<br />
When I did that, it returned the follow error:</p>
<p><span class="note">WordPress database error: [Unknown column 'p2c.category_id' in 'on clause']<br />
SELECT cats.cat_name, p2c.post_id FROM wp_posts posts INNER JOIN wp_categories cats ON (p2c.category_id = cats.cat_id) LEFT JOIN wp_post2cat p2c ON (posts.ID = p2c.post_id) WHERE posts.post_status IN (&#8216;publish&#8217;) AND posts.post_type &lt;&gt; &#8216;page&#8217;</span></p>
<p>To fix it, go to your simple-tagging folder (should be in the plugins folder) and look for &#8220;simpletagging.admin.php&#8221;</p>
<p>Look for lines 473 through 478 which looks like this:</p>
<p><span class="note">$qry = &#8220;SELECT cats.cat_name, p2c.post_id FROM $wpdb-&gt;posts posts<br />
INNER JOIN $wpdb-&gt;categories cats ON (p2c.category_id = cats.cat_id)<br />
LEFT JOIN $wpdb-&gt;post2cat p2c ON (posts.ID = p2c.post_id)<br />
WHERE posts.post_status IN (&#8216;publish&#8217;)<br />
AND posts.post_type &lt;&gt; &#8216;page&#8217; &#8220;;</span></p>
<p>Replace it with:</p>
<p><span class="note">$qry = &#8220;SELECT cats.cat_name, p2c.post_id FROM $wpdb-&gt;posts posts<br />
LEFT JOIN $wpdb-&gt;post2cat p2c<br />
INNER JOIN $wpdb-&gt;categories cats ON (p2c.category_id = cats.cat_id)<br />
ON (posts.ID = p2c.post_id)<br />
WHERE posts.post_status IN (&#8216;publish&#8217;)<br />
AND posts.post_type &lt;&gt; &#8216;page&#8217; &#8220;;</span></p>
<p>Save the file. That&#8217;s it!</p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/03/25/fixed-wordpress-database-error-with-simple-tagging-plugin/">http://jasonstone.name/2007/03/25/fixed-wordpress-database-error-with-simple-tagging-plugin/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/03/25/fixed-wordpress-database-error-with-simple-tagging-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Before applying Arctic Silver 5</title>
		<link>http://jasonstone.name/2007/01/15/before-applying-arctic-silver-5step-1/</link>
		<comments>http://jasonstone.name/2007/01/15/before-applying-arctic-silver-5step-1/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 12:51:32 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[arcticlean]]></category>
		<category><![CDATA[heat-sink]]></category>
		<category><![CDATA[preparing-to-apply-arctic-silver-5-to-your-cpu]]></category>

		<guid isPermaLink="false">http://jasonstone.name/?p=17</guid>
		<description><![CDATA[Remove the thermal pad before applying any thermal compound by using Isopropyl alcohol or ArctiClean]]></description>
			<content:encoded><![CDATA[<p>Before you apply <a target="_blank" href="http://www.arcticsilver.com/as5.htm">Arctic Silver 5</a> on your CPU make sure you clean your heat sink thoroughly. I personally prefer to use <strong>ArctiClean</strong> because it is the quickest way to get rid of that pesky thermal pad. If you don&#8217;t have ArctiClean, you can always pick up some isopropyl alcohol at your local grocery store. <span class="right"><a rel="rokbox[161 253](ArctiClean)" title="ArctiClean" href="http://jasonstone.name/wp-content/uploads/2007/04/arcticlean.jpg"><img class="ArctiClean" src="http://jasonstone.name/wp-content/uploads/2007/04/arcticlean_thumb.jpg" alt="ArctiClean" /></a></span> </p>
<p>Who will find this useful? You will find this article useful if this is your first time using Arctic Silver 5, or if you finally got around to replacing your good ole&#8217; <strong>AMD Thunderbird (1.33mhz)</strong> CPU with one of those shiny new <strong>Dual Core AMD64</strong> (or <strong>Intel Core 2 Duo</strong> if you swing that way) processors and you are just looking for a refresher course.</p>
<p>This article will go over the steps you should take prior to applying thermal compound to your CPU like removing the thermal pad which comes with most stock heat sinks, and cleaning and preparing your CPU. If you know how to do this, you can skip ahead to the next step: <a href="http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/" title="How to apply Arctic Silver 5 to your CPU">How to apply Arctic Silver 5 to your CPU</a></p>
<p>When you buy a new CPU, it usually includes a <strong>Stock Heat sink*</strong> (Scroll down for note) which has a thermal pad (usually gray or tan) on it. <strong>Arctic Silver</strong> is a <strong>higher quality alternative</strong> to a thermal pad so you need to remove the thermal pad. When removing the thermal pad, remember to use Isopropyl Alcohol (90% Alcohol or higher) or preferably something like <strong><a target="_blank" href="http://www.arcticsilver.com/arcticlean.htm" title="ArctiClean">ArctiClean</a></strong> which is much more efficient at removing thermal compound/pads/grease/gunk/etc. You are supposed to use a lint-free cloth so I typically use an old sunglass cleaning wipe that I got with my sunglasses (tissue or toilet paper would be considered lint-full).</p>
<p><strong>REMEMBER</strong>: You MUST remove the <strong>thermal pad</strong> prior to applying any thermal compound!</p>
<div class="center"><a rel="rokbox[500 281](ArctiClean)" title="Thermal Pad on heatsink" href="http://jasonstone.name/wp-content/uploads/2007/04/thermal-pad.jpg"><img class="ArctiClean" src="http://jasonstone.name/wp-content/uploads/2007/04/thermal-pad.thumbnail.jpg" alt="Thermal Pad on heatsink" /></a> <a rel="rokbox[500 263](ArctiClean)" title="Thermal Pad on heatsink angle" href="http://jasonstone.name/wp-content/uploads/2007/04/thermal-pad2.jpg"><img class="ArctiClean" src="http://jasonstone.name/wp-content/uploads/2007/04/thermal-pad2.thumbnail.jpg" alt="Thermal Pad on heatsink angle" /></a></div>
<p><strong>*Stock Heat-sink</strong>: The heat-sink that comes with your CPU is supposed to provide &#8220;Adequate&#8221; cooling for your processor. Studies show that computers that are kept cooler tend to perform better and last longer. My suggestion would be to <strong>replace the stock heat-sink</strong> with a more efficient after-market heat-sink. Even though I build <strong>Computers &amp; Servers</strong> for a living, I am not psychic and I don&#8217;t know the specifics about your computer, so if you would like a heat-sink recommendation, leave me a post and include your computer specs.</p>
<p>Step 2: <strong><a href="http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/" title="How to apply Arctic Silver 5 on your CPU">How to apply Arctic Silver 5 on your CPU</a></strong> </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/01/15/before-applying-arctic-silver-5step-1/">http://jasonstone.name/2007/01/15/before-applying-arctic-silver-5step-1/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/01/15/before-applying-arctic-silver-5step-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to apply Arctic Silver 5 on your CPU</title>
		<link>http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/</link>
		<comments>http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 12:17:08 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[amd64]]></category>
		<category><![CDATA[arctic-silver]]></category>
		<category><![CDATA[arctic-silver-5]]></category>
		<category><![CDATA[how-to-apply-arctic-silver-5-on-your-cpu]]></category>
		<category><![CDATA[intel-core-2-duo]]></category>
		<category><![CDATA[Photog]]></category>
		<category><![CDATA[xeon]]></category>

		<guid isPermaLink="false">http://jasonstone.name/?p=11</guid>
		<description><![CDATA[Remember all the steps you had to take to apply Arctic Silver 3? You can forget it. Arctic Silver 5 has made the process is much simpler now...]]></description>
			<content:encoded><![CDATA[<p>Remember all the steps you had to take to apply Arctic Silver 3? Things have changed. The process is much simpler now.<br />
<span class="right"><a rel="rokbox[103 72](as5)" title="Arctic Silver 5 Thermal Compound" href="http://jasonstone.name/wp-content/uploads/2007/04/as5.jpg"><img class="as5" src="http://jasonstone.name/wp-content/uploads/2007/04/as5.jpg" alt="Arctic Silver 5 Thermal Compound" /></a></span><br />
Who will find this useful? Anyone that needs help applying <strong>Arctic Silver 5</strong> on your CPU or if you are just looking for <strong>pictures</strong> to make sure you applied the correct amount of thermal compound.</p>
<p><!-- more --></p>
<p>You don&#8217;t have to spread the <strong>thermal compound</strong> across the top of the <strong>CPU</strong> anymore. Also, you don&#8217;t have to put anything on the heat-sink prior to mounting.</p>
<div class="center"><a rel="rokbox[800 413](as5)" title="Arctic Silver 5 :: Dual Xeon CPU" href="http://jasonstone.name/wp-content/uploads/2007/01/arcticsilver1_large.JPG"><img class="as5" src="http://jasonstone.name/wp-content/uploads/2007/01/_arcticsilver1_large.JPG" alt="Arctic Silver 5 :: Dual Xeon CPU" /></a></div>
<div class="center"><a rel="rokbox[500 281](as5)" title="Arctic Silver 5 :: Dual Xeon CPU angle" href="http://jasonstone.name/wp-content/uploads/2007/04/thermal-compound-dual-xeons2.jpg"><img class="as5" src="http://jasonstone.name/wp-content/uploads/2007/04/_thermal-compound-dual-xeons2.jpg" alt="Arctic Silver 5 :: Dual Xeon CPU angle" /></a></div>
<p>You should only apply a small amount to the center of the <strong>CPU</strong> (not the heat-sink) before mounting the heat-sink to the motherboard. The pressure of the heat-sink will spread the compound for you.</p>
<p>For a <strong>P4</strong>, you should only need to use the amount equivalent to about one (1) uncooked short-grains of white rice.<br />
For bigger processors, for instance an <strong>AMD64</strong>, <strong>Intel Core 2 Duo</strong> or <strong>Xeon</strong> you should only need to use the amount equivalent to about one and one half (1-1/2) uncooked short-grains of white rice. Here is a closer screen-shot of the processor (<strong>Intel Xeon Socket 604 Processor</strong>):</p>
<div class="center"><a rel="rokbox[500 300](as5)" title="Arctic Silver 5 :: Intel Xeon CPU close up" href="http://jasonstone.name/wp-content/uploads/2007/01/_arcticsilver2.JPG"><img class="as5" src="http://jasonstone.name/wp-content/uploads/2007/01/__arcticsilver2.JPG" alt="Arctic Silver 5 :: Intel Xeon CPU close up" /></a></div>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/">http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/01/06/how-to-apply-arctic-silver-5-on-your-cpu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
