<?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>david schultz dot org &#187; troubleshooting</title>
	<atom:link href="http://www.davidschultz.org/category/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidschultz.org</link>
	<description>(dot com was taken)</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:23:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to install Google Affiliate pixel tracking code in Magento</title>
		<link>http://www.davidschultz.org/2009/11/12/how-to-install-google-affiliate-pixel-tracking-code-in-magento/</link>
		<comments>http://www.davidschultz.org/2009/11/12/how-to-install-google-affiliate-pixel-tracking-code-in-magento/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:55:01 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/?p=317</guid>
		<description><![CDATA[Took me a day of scouring the web to figure out how to get this to work. After adding this code do a test order and view source and confirm it worked. #copy and paste to the bottom of #app/design/frontend/default/theme_name/template/checkout/success.phtml $companyID = "K123456"; #provided by Google $category = urlencode("Your product category"); $lastorderid = Mage::getSingleton('checkout/session')->getLastOrderId(); $_order [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/03/28/google-improves-streetmaps-2/" rel="bookmark">Google improves streetmaps</a><!-- (4.60055)--></li>
		<li><a href="http://www.davidschultz.org/2009/10/16/the-best-marketing-is-none-at-all/" rel="bookmark">The best marketing is none at all</a><!-- (3.80556)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/14/in-a-crowded-market-clarity-doesnt-sell/" rel="bookmark">In a crowded market clarity doesn&#8217;t sell</a><!-- (3.71909)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>Took me a day of scouring the web to figure out how to get this to work.  After adding this code do a test order and view source and confirm it worked.</p>
<pre name="code" class="php">
#copy and paste to the bottom of
#app/design/frontend/default/theme_name/template/checkout/success.phtml
$companyID = "K123456"; #provided by Google
$category = urlencode("Your product category");
$lastorderid = Mage::getSingleton('checkout/session')->getLastOrderId();
$_order = Mage::getModel('sales/order')->load($lastorderid);
$orderID = $this->getOrderId(); #get the order ID
$aProduct = array();
$totalAmt = 0;
$prdsku = "";
$prdnm = "";
$prdqn = "";
$prdpr = "";
$prcatid = "";

###########store order data in array of objects###########
foreach ($_order->getAllItems() as $item) {
	$oProduct = new stdClass();
	$oProduct->sku = $item->getSku(); #sku
	$oProduct->price = $item->getPrice(); #price
	$totalAmt = $totalAmt + ($oProduct->price * $item->getQtyOrdered()); #total amt (excl.tax/shipping)
	$oProduct->qty = $item->getQtyOrdered(); #quantity
	$oProduct->name = $item->getName(); #product name
	$oProduct->category = $category;
	array_push($aProduct, $oProduct);
	$oProduct = NULL; #nuke it
}
###########build query string variables###########
for ($i=0; $i < count($aProduct); $i++) {
	if ($i == count($aProduct)-1) {
		$prdsku .= urlencode($aProduct[$i]->sku);
		$prdnm .= urlencode($aProduct[$i]->name);
		$prdqn .= urlencode($aProduct[$i]->qty);
		$prdpr .= urlencode($aProduct[$i]->price);
		$prcatid .= urlencode($aProduct[$i]->category);
	} else {
		$prdsku .= urlencode($aProduct[$i]->sku) . "^";
		$prdnm .= urlencode($aProduct[$i]->name) . "^";
		$prdqn .= urlencode($aProduct[$i]->qty) . "^";
		$prdpr .= urlencode($aProduct[$i]->price) . "^";
		$prcatid .= urlencode($aProduct[$i]->category) ."^";
	}
}
?>

<img src="https://clickserve.cc-dt.com/link/order?vid=<?=$companyID?>&#038;oid=<?=$orderID?>&#038;amt=<?=urlencode($totalAmt)?>&#038;prdsku=<?=$prdsku?>&#038;prdnm=<?=$prdnm?>&#038;prdqn=<?=$prdqn?>&#038;prdpr=<?=$prdpr?>&#038;prcatid=<?=$prcatid?>" width=1 height=1>
</pre>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/03/28/google-improves-streetmaps-2/" rel="bookmark">Google improves streetmaps</a><!-- (4.60055)--></li>
		<li><a href="http://www.davidschultz.org/2009/10/16/the-best-marketing-is-none-at-all/" rel="bookmark">The best marketing is none at all</a><!-- (3.80556)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/14/in-a-crowded-market-clarity-doesnt-sell/" rel="bookmark">In a crowded market clarity doesn&#8217;t sell</a><!-- (3.71909)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2009/11/12/how-to-install-google-affiliate-pixel-tracking-code-in-magento/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>What happens if you break your iPhone in Canada?</title>
		<link>http://www.davidschultz.org/2008/09/17/what-happens-if-you-break-your-iphone-in-canada/</link>
		<comments>http://www.davidschultz.org/2008/09/17/what-happens-if-you-break-your-iphone-in-canada/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 18:09:59 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[annoying]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/2008/09/17/what-happens-if-you-break-your-iphone-in-canada/</guid>
		<description><![CDATA[My friend Paul broke the glass of his iPhone this past weekend, a horrific sight for any iPhone owner. In Canada, you can&#8217;t buy the 3G iPhone from Apple directly, you have to go through Rogers and that requires signing up for a 3 year contract. When he went to Rogers, they said the only [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/10/16/fieldrunners-best-iphone-game-to-date/" rel="bookmark">Fieldrunners: best iPhone game to date?</a><!-- (9.32431)--></li>
		<li><a href="http://www.davidschultz.org/2009/11/03/how-to-jailbreak-and-unlock-your-iphone-3g-3gs-using-blacksn0w-mac-instructions/" rel="bookmark">How to Jailbreak and Unlock Your iPhone 3G, 3GS Using BlackSn0w [ mac instructions ]</a><!-- (8.94302)--></li>
		<li><a href="http://www.davidschultz.org/2008/07/07/why-im-still-going-to-buy-an-iphone-from-rogers/" rel="bookmark">Why i&#8217;m still going to buy an iphone from Rogers</a><!-- (8.17483)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm4.static.flickr.com/3044/2865235637_4caa172910_m.jpg" alt="http://farm4.static.flickr.com/3044/2865235637_4caa172910_m.jpg"  align='right'/>My friend Paul broke the glass of his iPhone this past weekend, a horrific sight for any iPhone owner.  In Canada, you can&#8217;t buy the 3G iPhone from Apple directly, you have to go through Rogers and that requires signing up for a 3 year contract.  When he went to Rogers, they said the only way they could &#8216;sell&#8217; him a new phone was if he paid out the remainder of his existing contract, which works out to about $3,000 CDN&#8230;THREE THOUSAND DOLLARS!</p>
<p>After much arguing / pleading with store managers and speaking with the staff at the Apple store in the Eaton&#8217;s Center he was still unable to get a replacement.  Not really surprising though, If the damage is inflicted by you, and not a fault of the device &#8211; i.e shattering the screen, you are on your own.  The bottom line is, in these situations your best option is to speak with Apple to find a certified iPhone repair depot which can fix the damage for you.  One unfortunate side effect of repairs such as replacing the glass screen is they void your warranty.</p>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/10/16/fieldrunners-best-iphone-game-to-date/" rel="bookmark">Fieldrunners: best iPhone game to date?</a><!-- (9.32431)--></li>
		<li><a href="http://www.davidschultz.org/2009/11/03/how-to-jailbreak-and-unlock-your-iphone-3g-3gs-using-blacksn0w-mac-instructions/" rel="bookmark">How to Jailbreak and Unlock Your iPhone 3G, 3GS Using BlackSn0w [ mac instructions ]</a><!-- (8.94302)--></li>
		<li><a href="http://www.davidschultz.org/2008/07/07/why-im-still-going-to-buy-an-iphone-from-rogers/" rel="bookmark">Why i&#8217;m still going to buy an iphone from Rogers</a><!-- (8.17483)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2008/09/17/what-happens-if-you-break-your-iphone-in-canada/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to clean up your address book for MobileMe</title>
		<link>http://www.davidschultz.org/2008/07/17/how-to-clean-up-your-address-book-for-mobileme/</link>
		<comments>http://www.davidschultz.org/2008/07/17/how-to-clean-up-your-address-book-for-mobileme/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 15:00:01 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/2008/07/17/how-to-clean-up-your-address-book-for-mobileme/</guid>
		<description><![CDATA[If you&#8217;re like me, you&#8217;ve imported your contact list from Gmail which means thousands of names &#038; email addresses you don&#8217;t really care about &#8211; ugh what a mess! What i am now doing is trying to maintain proper groups for family, friends &#038; business contacts. So how do you get rid of all the [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/07/07/why-im-still-going-to-buy-an-iphone-from-rogers/" rel="bookmark">Why i&#8217;m still going to buy an iphone from Rogers</a><!-- (11.4406)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (7.39575)--></li>
		<li><a href="http://www.davidschultz.org/2008/07/21/how-to-get-people-talking-about-you/" rel="bookmark">Word of mouth &#8211; how to get it?</a><!-- (7.26637)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you&#8217;ve imported your contact list from Gmail which means thousands of names &#038; email addresses you don&#8217;t really care about &#8211; ugh what a mess!  What i am now doing is trying to maintain proper groups for family, friends &#038; business contacts.  So how do you get rid of all the clutter?  First get the contacts you care about into an address book group &#8211; doesn&#8217;t matter what you call it.  In my case i called it &#8220;Friends &#038; Family&#8221;.  Then create a smart group that looks for your contacts that are NOT in your groups.  Go into that smart group, select everything (CMD+A) and delete.  You now how have a nice clean address book which will sync between your iphone / mac / pc.</p>
<p><img src="http://farm4.static.flickr.com/3215/2676599563_8d675caa2e.jpg?v=0" alt="" /></p>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/07/07/why-im-still-going-to-buy-an-iphone-from-rogers/" rel="bookmark">Why i&#8217;m still going to buy an iphone from Rogers</a><!-- (11.4406)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (7.39575)--></li>
		<li><a href="http://www.davidschultz.org/2008/07/21/how-to-get-people-talking-about-you/" rel="bookmark">Word of mouth &#8211; how to get it?</a><!-- (7.26637)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2008/07/17/how-to-clean-up-your-address-book-for-mobileme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sendmail says: stat=Deferred: Connection reset</title>
		<link>http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/</link>
		<comments>http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/#comments</comments>
		<pubDate>Mon, 05 May 2008 18:57:13 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sendmail]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/</guid>
		<description><![CDATA[I have been struggling with this problem for the last 2 days and finally figured out the solution. Your mileage may vary depending on your network configuration but first some background on mine. I have a Lighttpd web server that i am running some PHP mail scripts on. We are trying to use our company&#8217;s [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (7.06439)--></li>
		<li><a href="http://www.davidschultz.org/2008/10/16/how-to-setup-a-linux-cronjob-in-3-steps/" rel="bookmark">How to setup a linux cronjob in 3 steps</a><!-- (6.26502)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/" rel="bookmark">Phpmyadmin error: &#8220;Cannot start session without errors&#8221;</a><!-- (5.73733)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>I have been struggling with this problem for the last 2 days and finally figured out the solution.  Your mileage may vary depending on your network configuration but first some background on mine.  I have a Lighttpd web server that i am running some PHP mail scripts on.  We are trying to use our company&#8217;s MTA to relay messages so i had this line in the <code>sendmail.cf</code> file, with 10.0.0.116 being the IP address of our MTA. </p>
<p><code>define(`SMART_HOST', `10.0.0.116')dnl</code></p>
<p>Still, things didn&#8217;t seem to want to work.  My network administrator wasn&#8217;t evening seeing the mail attempts on our mail server so the problem was definitely on the webserver.<br />
Turns out (as these things often are) that it was a dumb syntax problem.  The following change fixed everything:</p>
<p><code>define(`SMART_HOST', `[10.0.0.116]')dnl</code></p>
<p>Hope this helps if you are having a similar problem.</p>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (7.06439)--></li>
		<li><a href="http://www.davidschultz.org/2008/10/16/how-to-setup-a-linux-cronjob-in-3-steps/" rel="bookmark">How to setup a linux cronjob in 3 steps</a><!-- (6.26502)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/" rel="bookmark">Phpmyadmin error: &#8220;Cannot start session without errors&#8221;</a><!-- (5.73733)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Phpmyadmin error: &#8220;Cannot start session without errors&#8221;</title>
		<link>http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/</link>
		<comments>http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 15:12:09 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/</guid>
		<description><![CDATA[I have been trying to get phpmyadmin working on my Fedora 8 server i&#8217;ve been setting up, and struggled for the past day or so on this error: Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. Turns out it&#8217;s very easy [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/" rel="bookmark">Sendmail says: stat=Deferred: Connection reset</a><!-- (8.29688)--></li>
		<li><a href="http://www.davidschultz.org/2009/11/12/how-to-install-google-affiliate-pixel-tracking-code-in-magento/" rel="bookmark">How to install Google Affiliate pixel tracking code in Magento</a><!-- (4.39934)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (4.25633)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>I have been trying to get <a href="http://www.phpmyadmin.net/">phpmyadmin</a> working on my Fedora 8 server i&#8217;ve been setting up, and struggled for the past day or so on this error:</p>
<blockquote><p>Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.</p></blockquote>
<p>Turns out it&#8217;s very easy to fix.  First thing you&#8217;ll want to do is have a look at your error logs.  For me this was in /var/log/lighttpd/error.log (<a href="http://www.lighttpd.net/">i&#8217;m using lighttpd</a> instead of Apache).  Have a look at your error log and you will probably see errors referencing permission errors writing to your session directory.  </p>
<p>Simply chmod 777 that directory and you should be good to go.  </p>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/" rel="bookmark">Sendmail says: stat=Deferred: Connection reset</a><!-- (8.29688)--></li>
		<li><a href="http://www.davidschultz.org/2009/11/12/how-to-install-google-affiliate-pixel-tracking-code-in-magento/" rel="bookmark">How to install Google Affiliate pixel tracking code in Magento</a><!-- (4.39934)--></li>
		<li><a href="http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/" rel="bookmark">How to setup a static route in OSX Leopard</a><!-- (4.25633)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2008/03/31/phpmyadmin-error-cannot-start-session-without-errors/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to setup a static route in OSX Leopard</title>
		<link>http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/</link>
		<comments>http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 16:38:04 +0000</pubDate>
		<dc:creator>David Schultz</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/</guid>
		<description><![CDATA[I am in a situation at my office where i need a few static routes to reach external webservers. I had this working in 10.4 thanks to the tip over @ Macosxhints however after upgrading to Leopard my routes didn&#8217;t seem to get added to my routing table. I called Apple support this morning and [...]

<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/10/16/how-to-setup-a-linux-cronjob-in-3-steps/" rel="bookmark">How to setup a linux cronjob in 3 steps</a><!-- (7.98525)--></li>
		<li><a href="http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/" rel="bookmark">Sendmail says: stat=Deferred: Connection reset</a><!-- (7.00139)--></li>
		<li><a href="http://www.davidschultz.org/2008/04/11/pick-of-the-week-tripitcom/" rel="bookmark">Pick of the week: tripit.com</a><!-- (6.22842)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>I am in a situation at my office where i need a few static routes to reach external webservers.  I had this working in 10.4 thanks to the <a href="http://www.macosxhints.com/article.php?story=20060329085850170">tip over @ Macosxhints</a> however after upgrading to Leopard my routes didn&#8217;t seem to get added to my routing table.  I called Apple support this morning and they had no idea and actually said they don&#8217;t support this sort of thing either.  Google searches came up dry however i figured out via a few terminal commands you can get it working manually.  Here&#8217;s how.  Pop open Terminal, and type:<br />
<code><br />
su<br />
</code><br />
You&#8217;ll then need to enter your root password.  Strangely this didn&#8217;t work for me at first.  If you have this problem too, open up Directory Utility (apps/utilities) and then click on &#8216;edit&#8217; and &#8216;enable root user&#8217;.<br />
Once you have root access, you can create your static routes, here is the command:<br />
<code><br />
route add –net 192.168.5.0 10.0.1.5<br />
</code><br />
192.168.5.0 is the network i&#8217;m trying to reach, via the gateway 10.0.1.5.  </p>
<p><strong>Update:</strong>  Recently this stopped working for me, not sure if it was an OSX update or something with our internal network.  In any case, this solved the problem for me:<br />
<code><br />
sudo route add -net 192.168.5.0/24 10.0.1.5<br />
</code></p>


<h3>Related Posts:</h3>
<ol>
		<li><a href="http://www.davidschultz.org/2008/10/16/how-to-setup-a-linux-cronjob-in-3-steps/" rel="bookmark">How to setup a linux cronjob in 3 steps</a><!-- (7.98525)--></li>
		<li><a href="http://www.davidschultz.org/2008/05/05/sendmail-says-statdeferred-connection-reset/" rel="bookmark">Sendmail says: stat=Deferred: Connection reset</a><!-- (7.00139)--></li>
		<li><a href="http://www.davidschultz.org/2008/04/11/pick-of-the-week-tripitcom/" rel="bookmark">Pick of the week: tripit.com</a><!-- (6.22842)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.davidschultz.org/2008/03/04/how-to-setup-a-static-route-in-osx-leopard/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.872 seconds -->
