<?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>Sannsack.com</title>
	<atom:link href="http://sannsack.com/feed" rel="self" type="application/rss+xml" />
	<link>http://sannsack.com</link>
	<description>IT Services for Non-Profit&#039;s, Churchs, and Small Business</description>
	<lastBuildDate>Thu, 08 Jul 2010 07:07:19 +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>PCI Compliance</title>
		<link>http://sannsack.com/tutorials/pci-compliance</link>
		<comments>http://sannsack.com/tutorials/pci-compliance#comments</comments>
		<pubDate>Thu, 08 Jul 2010 07:07:19 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=337</guid>
		<description><![CDATA[If you have a server that is involved in eCommerce - you MUST be PCI complaint.  Here are a few steps to get a virtual private server running cpanel/whm PCI complaint: Disable TRACE or TRACK method - Access your Web Hosting Manager (WHM) Under Service Configuration, click the link for Apache Configuration Click the Global Configuration link The second [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a server that is involved in eCommerce - you MUST be PCI complaint.  Here are a few steps to get a virtual private server running cpanel/whm PCI complaint:</p>
<p><a href="http://billing.handsonwebhosting.com/knowledgebase.php?action=displayarticle&amp;id=246">Disable TRACE or TRACK method</a> -</p>
<ol>
<li>Access your Web Hosting Manager (WHM)</li>
<li>Under <strong>Service Configuration</strong>, click the link for<strong> Apache Configuration</strong></li>
<li><strong></strong>Click the <strong>Global Configuration</strong> link</li>
<li>The second option is <strong>TraceEnable</strong>.  Set this to <strong>OFF</strong>.</li>
<li>Restart Apache</li>
</ol>
<p><a href="http://forums.cpanel.net/f5/pci-compliance-105157.html">Disable weak ciphers</a> -</p>
<p style="padding-left: 30px;">I logged into my WHM (11.24) &gt; Apache Configuration &gt; Global Configuration, and here is a direct cut and paste:</p>
<p style="padding-left: 30px;">ALL:!ADH:!NULL:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:-LOW:+SSLv3:+TLSv1</p>
<p>More to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/tutorials/pci-compliance/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iptables &#8211; quick how to block a port (and save it)</title>
		<link>http://sannsack.com/tutorials/iptables-quick-how-to-block-a-port-and-save-it</link>
		<comments>http://sannsack.com/tutorials/iptables-quick-how-to-block-a-port-and-save-it#comments</comments>
		<pubDate>Thu, 08 Jul 2010 04:11:55 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=332</guid>
		<description><![CDATA[If you don&#8217;t know what iptables are &#8211; don&#8217;t bother reading this post. I had a recent issue with the vncserver on my virtual private server &#8211; I don&#8217;t use the service and wouldn&#8217;t have turned it on, however the hosting provided I acquired the vps from included it in their base build, enabled and [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t know what iptables are &#8211; don&#8217;t bother reading this post.</p>
<p>I had a recent issue with the vncserver on my virtual private server &#8211; I don&#8217;t use the service and wouldn&#8217;t have turned it on, however the hosting provided I acquired the vps from included it in their base build, enabled and listening on both ports 5902 and 5903.  I turned the service off (using &#8216;chkconfig vncserver off&#8217;).  But, ever after that &#8211; my server was still responding to ports 5902 and 5903.</p>
<p>Ok &#8211; so if its not vncserver &#8211; I don&#8217;t know what it is.  But &#8216;netstat -tp&#8217; didn&#8217;t reveal anything listening on those ports.  So rather than waste a lot of time trying to figure it out &#8211; I figured I would take the easy route and block the port.  This is how I did it:</p>
<p>iptables -A INPUT -p tcp &#8211;dport 5902 -j DROP<br />
iptables -A INPUT -p tcp &#8211;dport 5903 -j DROP</p>
<p>I derived those commands from here: <a href="http://www.linuxforums.org/forum/linux-security/29397-closing-ports.html">http://www.linuxforums.org/forum/linux-security/29397-closing-ports.html</a> using input from <a rel="nofollow" href="http://www.linuxforums.org/forum/members/goran.html">Goran</a>.</p>
<p>Ok &#8211; telnet to those ports no longer responds &#8211; great!  But then I rebooted the server (actually I just restarted iptables using &#8216;service iptables restart&#8217;).  Now my server is replying to those ports again.  DOH!</p>
<p>I realized I need to save the firewall rules after I ran them.  I read a lot about exporting and importing the rules using iptables-save and iptables-restore &#8211; but this seemed like overkill.  I finally found this: <a href="http://www.linuxquestions.org/questions/red-hat-31/how-to-save-iptables-415929/">http://www.linuxquestions.org/questions/red-hat-31/how-to-save-iptables-415929/</a></p>
<p>&#8216;service iptables save&#8217;</p>
<p>Volla &#8211; worked like a champ!  Hope it helps you!</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/tutorials/iptables-quick-how-to-block-a-port-and-save-it/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set different prices for each store view in Magento</title>
		<link>http://sannsack.com/tutorials/how-to-set-different-prices-for-each-store-view-in-magento</link>
		<comments>http://sannsack.com/tutorials/how-to-set-different-prices-for-each-store-view-in-magento#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:15:41 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=327</guid>
		<description><![CDATA[If you have more than one Magento website (say a wholesale site for retailer clients and a retail site for consumers) you may find yourself wanting to set one price for site A and a different price for site B.  Here is how: Step 1.  In the Admin panel, goto System, Configuration, Catolog, then Price. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">If you have more than one Magento website (say a wholesale site for retailer clients and a retail site for consumers) you may find yourself wanting to set one price for site A and a different price for site B.  Here is how:</p>
<p>Step 1.  In the Admin panel, goto System, Configuration, Catolog, then Price.</p>
<p style="text-align: center;"><img class="size-medium wp-image-328 aligncenter" title="price" src="http://sannsack.com/wp-content/uploads/2010/06/price-300x208.jpg" alt="" width="300" height="208" /></p>
<p>Step 2. Change Price from Global to Website.</p>
<p>Step 3. You should see &#8220;Website&#8221; on the price page for the product now, instead of &#8220;Global&#8221;.</p>
<p><img class="aligncenter size-medium wp-image-329" title="price2" src="http://sannsack.com/wp-content/uploads/2010/06/price2-300x42.jpg" alt="" width="300" height="42" /></p>
<p>Step 4. For each product you want to set different prices on &#8211; select the product, then in the upper left corner you will see the option to chose your store view.  Select the first store</p>
<p>Step 5. Set the price for the first store and click &#8220;Save and Continue Editing&#8221;</p>
<p>Step 6. Select the store view for your second store and set the price for that store</p>
<p>Step 7. Repeat step 6 until all of your store have the prices you want.</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/tutorials/how-to-set-different-prices-for-each-store-view-in-magento/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 is OUT!</title>
		<link>http://sannsack.com/technology/wordpress-3-0-is-out</link>
		<comments>http://sannsack.com/technology/wordpress-3-0-is-out#comments</comments>
		<pubDate>Thu, 17 Jun 2010 21:11:03 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=324</guid>
		<description><![CDATA[And the engine behind sannsack.com &#8211; as well as several of my other sites! If you haven&#8217;t upgraded yet &#8211; do it today!]]></description>
			<content:encoded><![CDATA[<p>And the engine behind sannsack.com &#8211; as well as several of my other sites!</p>
<p>If you haven&#8217;t upgraded yet &#8211; do it today!</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/wordpress-3-0-is-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Gmail your Default Email Program in Windows 7</title>
		<link>http://sannsack.com/technology/how-to-make-gmail-your-default-email-program-in-windows-7</link>
		<comments>http://sannsack.com/technology/how-to-make-gmail-your-default-email-program-in-windows-7#comments</comments>
		<pubDate>Thu, 03 Jun 2010 11:38:37 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=291</guid>
		<description><![CDATA[Here is something I get asked alot &#8211; How do I make GMail my default email program in Windows 7?  In Windows 7, you have the option to change your Default Programs to which ever email program you have installed &#8211; but GMail isn&#8217;t installed on your computer and doesn&#8217;t show up in Default Programs. [...]]]></description>
			<content:encoded><![CDATA[<p>Here is something I get asked alot &#8211; How do I make GMail my default email program in Windows 7?  In Windows 7, you have the option to change your Default Programs to which ever email program you have installed &#8211; but GMail isn&#8217;t installed on your computer and doesn&#8217;t show up in Default Programs.</p>
<p>You could installed <a href="http://toolbar.google.com/toolbar/gmail-helper">GMail Notifier</a> and set it to open gmail for you when an email link is clicked &#8211; but there is another way if you are willing to edit the registry.  I know this can sound a bit technical, but its not difficult to do.  If it does scary you off &#8211; then go with the GMail notifier option &#8211; otherwise follow these steps:</p>
<ol>
<li>Right Click on the link below for your browser below</li>
<li>Select Save As</li>
<li>Save to your computer</li>
<li>Find where you saved the file and change the file extension from .txt to .reg</li>
<li>import the registry file to your computer</li>
</ol>
<p>If step 4 has you hung up &#8211; you need to change your folder options to not hide extensions for known file types.</p>
<p><a href="http://sannsack.com/wp-content/uploads/2010/01/chrome-gmail.txt">chrome-gmail</a></p>
<p><a href="http://sannsack.com/wp-content/uploads/2010/01/firefox-gmail.txt">firefox-gmail</a></p>
<p><a href="http://sannsack.com/wp-content/uploads/2010/01/firefox-gmail-32bit.txt">firefox-gmail-32bit</a></p>
<p><a href="http://sannsack.com/wp-content/uploads/2010/01/IE-gmail.txt">IE-gmail</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/how-to-make-gmail-your-default-email-program-in-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento pre-checks &#8211; how to install curl, gd, mcrypt, and pdo using cpanel whm &#8211; yeah its easy!</title>
		<link>http://sannsack.com/technology/magento-pre-checks-how-to-install-curl-gd-mcrypt-and-pdo-using-cpanel-whm-yeah-its-easy</link>
		<comments>http://sannsack.com/technology/magento-pre-checks-how-to-install-curl-gd-mcrypt-and-pdo-using-cpanel-whm-yeah-its-easy#comments</comments>
		<pubDate>Thu, 27 May 2010 15:29:48 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=302</guid>
		<description><![CDATA[I searched for hours and hours after I attempted to install Magento on a godaddy vps only to get this: Your server does not meet the following requirements in order to install Magento. The following requirements failed, please contact your hosting provider in order to receive assistance with meeting the system requirements for Magento: You [...]]]></description>
			<content:encoded><![CDATA[<p>I searched for hours and hours after I attempted to install Magento on a godaddy vps only to get this:</p>
<div id="_mcePaste"><strong>Your server does not meet the following requirements in order to install Magento.</strong></div>
<div id="_mcePaste">The following requirements failed, please contact your hosting provider in order to receive assistance with meeting the system requirements for Magento:</div>
<div id="_mcePaste">
<ul>
<li>You are missing the curl extension</li>
<li>You are missing the gd extension</li>
<li>You are missing the mcrypt extension</li>
<li>You are missing the pdo_mysql extension</li>
<li>You are missing the pdo extension</li>
</ul>
</div>
<div id="_mcePaste">The following requirements were successfully met:</div>
<div id="_mcePaste">
<ul>
<li>You have PHP 5.2.0 (or greater)</li>
<li>Safe Mode is off</li>
<li>You have MySQL 4.1.20 (or greater)</li>
<li>You have the dom extension</li>
<li>You have the hash extension</li>
<li>You have the iconv extension</li>
<li>You have the pcre extension</li>
<li>You have the simplexml extension</li>
</ul>
</div>
<div id="_mcePaste">After hours of searching I found &#8220;pecl install pdo&#8221; which worked great to address the pdo and pdo_mysql extension issues.  But sadly, &#8220;pecl install curl&#8221; did nothing (btw, its not supposed to &#8211; but I was hopeful).  I found a lot of information about updating the php.ini &#8211; most of which talked about removing the ; from the lines required to enable curl, gd, and mcrypt.  Which I did &#8211; then restarted apache, then restarted my server, then rebooted my laptop&#8230; ok, the laptop was because I loaded patches to it completely unrelated to my server problem, but why not throw that in there?</div>
<div></div>
<div>I found several posts saying &#8220;just run /scripts/easyapache&#8221;.  Most of these posts assume a certain level of knowledge that I obviously didn&#8217;t have.  Once I found that I can actually just type &#8220;/scripts/easyapache&#8221; at an SSH command line (I know I may have just &#8216;assumed&#8217; a level of knowledge you may not have but keep reading, it gets easy!)  I ran easyapache and was presented with a text based menu that made no sense to me.  I felt like I was on the right track, but still not there.  The forum where I found the easyapache hint (<a href="http://forums.theplanet.com/index.php?showtopic=26527">http://forums.theplanet.com/index.php?showtopic=26527</a>) had several comments with questions about what it does and how to use it &#8211; but one comment caught my eye by Erwin:</div>
<div></div>
<div style="padding-left: 30px;"><span style="font-family: Verdana, Tahoma, Arial, 'Trebuchet MS', sans-serif, Georgia, Courier, 'Times New Roman', serif; font-size: 12px; color: #222222; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;">In CPanel 7, you can now do this in WHM by going to the <strong>Software</strong> section and choosing:</p>
<p><strong>Update Apache</strong></p>
<p>Then choose mcrypt or any other module you want to recompile PHP with.</p>
<p>And it will do so automatically. <img style="vertical-align: middle; border: 0px initial initial;" src="http://forums.theplanet.com/style_emoticons/default/icon_smile.gif" border="0" alt="icon_smile.gif" /> Similar to easyapache, but easier to use. <img style="vertical-align: middle; border: 0px initial initial;" src="http://forums.theplanet.com/style_emoticons/default/icon_smile.gif" border="0" alt="icon_smile.gif" /> I upgraded to PHP 4.3.2 just like that with the modules I want.</span></div>
<div></div>
<div><span style="font-family: Verdana, Tahoma, Arial, 'Trebuchet MS', sans-serif, Georgia, Courier, 'Times New Roman', serif; font-size: 12px; color: #222222; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;">So I tried that &#8211; realizing the post was pretty old and my screens might be very different.  They were, but I was able to work it out. I went to </span><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 12px; color: #666666;"> </span></div>
<div>
<ul>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 12px; color: #666666;">&#8220;Main &gt;&gt; Software &gt;&gt; EasyApache (Apache Update)&#8221;.</span><span style="font-family: Verdana, Tahoma, Arial, 'Trebuchet MS', sans-serif, Georgia, Courier, 'Times New Roman', serif; font-size: 12px; color: #222222; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;"> </span></li>
<li><span style="font-family: Verdana, Tahoma, Arial, 'Trebuchet MS', sans-serif, Georgia, Courier, 'Times New Roman', serif; font-size: 12px; color: #222222; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;">Then I selected the </span><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">PHP Encryption / E-commerce option. </span></li>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">Then &#8220;start customizing based on profile&#8221;. </span></li>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">From there I selected Apache 2.2 (I was currently running 2.0), </span></li>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">clicked Next and selected php5, selected build 5.3.2, </span></li>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">scroll to the bottom of the page and click &#8220;</span><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;"><br />
<input class="input-button" style="font: normal normal normal 99%/normal verdana, arial, helvetica, clean, sans-serif; background-image: url(http://sannsack.com:2086/images/button-bg.jpg); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; color: #014d5f; vertical-align: middle; margin-top: 0px; margin-left: 4px; font-size: 11px; height: 21px; background-position: 50% 0%; background-repeat: repeat no-repeat; border: 2px outset #f0f0f0;" type="submit" value="Exhaustive Options List" />&#8220;</span></li>
<li><span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;">Now we are COOKING! &#8211; you can now select curl, gd, mcrypt, pdo, and a whole host of other options. </span></li>
</ul>
</div>
<p>After selecting those options, I clicked &#8220;<span style="font-family: verdana, arial, helvetica, clean, sans-serif; line-height: normal; font-size: 11px;"><br />
<input style="font: normal normal normal 99%/normal verdana, arial, helvetica, clean, sans-serif;" name="action" type="submit" value="Save and build" /><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">&#8220;.  Now it goes and goes while building apache with all of the options you selected &#8211; NO COMPILING, MAKE, MAKE INSTALL, ETC!  It does all of that for you!</span></span></p>
<p>I go back to my magento-check.php page and I&#8217;m in magento precheck heaven:</p>
<p style="font-family: 'Times New Roman'; line-height: normal; font-size: small;"><strong>Congratulations!</strong> Your server meets the requirements for Magento.</p>
<ul style="font-family: 'Times New Roman'; line-height: normal; font-size: small;">
<li>You have<strong> PHP 5.2.0</strong> (or greater)</li>
<li>Safe Mode is <strong>off</strong></li>
<li>You have<strong> MySQL 4.1.20</strong> (or greater)</li>
<li>You have the <strong>curl</strong> extension</li>
<li>You have the <strong>dom</strong> extension</li>
<li>You have the <strong>gd</strong> extension</li>
<li>You have the <strong>hash</strong> extension</li>
<li>You have the <strong>iconv</strong> extension</li>
<li>You have the <strong>mcrypt</strong> extension</li>
<li>You have the <strong>pcre</strong> extension</li>
<li>You have the <strong>pdo</strong> extension</li>
<li>You have the <strong>pdo_mysql</strong> extension</li>
<li>You have the <strong>simplexml</strong> extension</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/magento-pre-checks-how-to-install-curl-gd-mcrypt-and-pdo-using-cpanel-whm-yeah-its-easy/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 Out &#8211; Oh so fine&#8230;</title>
		<link>http://sannsack.com/technology/wordpress-2-9-out-oh-so-fine</link>
		<comments>http://sannsack.com/technology/wordpress-2-9-out-oh-so-fine#comments</comments>
		<pubDate>Wed, 23 Dec 2009 02:57:02 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=282</guid>
		<description><![CDATA[WordPress 2.9 is supposed to embed video urls simply by pasting the url into its own line in a post &#8211; so here goes:]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9 is supposed to embed video urls simply by pasting the url into its own line in a post &#8211; so here goes:</p>
<p><embed src="http://v.wordpress.com/NBZ853Xn" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/wordpress-2-9-out-oh-so-fine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t use WPAU plug-in to upgrade to WordPress 2.7!</title>
		<link>http://sannsack.com/technology/dont-use-wpau-plug-in-to-upgrade-to-wordpress-27</link>
		<comments>http://sannsack.com/technology/dont-use-wpau-plug-in-to-upgrade-to-wordpress-27#comments</comments>
		<pubDate>Thu, 11 Dec 2008 11:27:35 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=66</guid>
		<description><![CDATA[I upgraded several of my blogs manually to the newly released WordPress 2.7 and they have worked out very well, however I upgraded one of my blogs using the WPAU plugin and the results were a disaster.  Most of the functionality is there, however there have been several buggy screens inside the admin panel &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded several of my blogs manually to the newly released WordPress 2.7 and they have worked out very well, however I upgraded one of my blogs using the <a href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-plugin.html" target="_blank">WPAU plugin</a> and the results were a disaster.  Most of the functionality is there, however there have been several buggy screens inside the admin panel &#8211; most of the issue appears to be related to the styling of pages (missing images, text based pages, code function names instead of friendly names, etc).</p>
<p>I could be jumping the gun here, since I have only upgraded one blog using the plugin&#8230; But I&#8217;m not going to chance it with any of my client&#8217;s blogs.</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/dont-use-wpau-plug-in-to-upgrade-to-wordpress-27/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 is the Microsoft Frontpage for Web2.0</title>
		<link>http://sannsack.com/technology/wordpress-27-is-the-microsoft-frontpage-for-web20</link>
		<comments>http://sannsack.com/technology/wordpress-27-is-the-microsoft-frontpage-for-web20#comments</comments>
		<pubDate>Thu, 11 Dec 2008 11:07:29 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=62</guid>
		<description><![CDATA[When a co-worker said that earlier today, I must admit I was at first put off.  I&#8217;m not a frontpage fan and I think frontpage websites look horrible.  But then I gave it some thought.  Frontpage made creating a website easy and intuitive; it was an amazing product at the time.  WordPress makes creating high [...]]]></description>
			<content:encoded><![CDATA[<p>When a co-worker said that earlier today, I must admit I was at first put off.  I&#8217;m not a frontpage fan and I think frontpage websites look horrible.  But then I gave it some thought.  Frontpage made creating a website easy and intuitive; it was an amazing product at the time.  WordPress makes creating high quality websites easy and intuitive; it is an amazing <em>Web2.0</em> product.</p>
<p>I&#8217;ve been using wordpress since version 2.0 and there have been major improvements over the years &#8211; but version 2.7 takes the cake!  The new admin panel is a great improvement to an already amazing product.  There are many <a href="http://wordpress.org/about/features/" target="_blank">features</a> I love about the new version, but my personal favorite is the ability to upgrade the core from the admin panel.  In the previous version they introduced the ability to automatically upgrade plugins &#8211; a feature that worked most of the time for me.  But if you wanted to update wordpress itself, you either manually upgraded or you installed the <a href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-12-release.html" target="_blank">wpau plugin</a>.  Now its a couple of clicks from the admin panel.</p>
<p>The admin panel itself is more user friendly than ever before; a newly added navigation bar, a dashboard that displays relavent information, a quickpress option to brain dump a post faster than ever, and the ability to edit metadata without having to navigate through the posts themselves &#8211; just to name a few of the improvements.</p>
<p>WordPress is quickly positioning itself to become a household name as a leading provider of Web2.0 websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/technology/wordpress-27-is-the-microsoft-frontpage-for-web20/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get emails from yourself using gmail and pop3</title>
		<link>http://sannsack.com/tutorials/how-to-get-emails-from-yourself-using-gmail-and-pop3</link>
		<comments>http://sannsack.com/tutorials/how-to-get-emails-from-yourself-using-gmail-and-pop3#comments</comments>
		<pubDate>Mon, 08 Dec 2008 08:31:23 +0000</pubDate>
		<dc:creator>dsackr</dc:creator>
				<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://sannsack.com/?p=58</guid>
		<description><![CDATA[Google rocks in many ways &#8211; including gmail&#8230; but after moving a few of my clients to google hosted mail (client@clientsdomainname.com hosted using gmail servers), I ran into a snag.  Its not actually something I would have expected to ever hear&#8230; The actually call went like this: Client: &#8220;I&#8217;m not getting all of my mail&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Google rocks in many ways &#8211; including gmail&#8230; but after moving a few of my clients to google hosted mail (client@clientsdomainname.com hosted using gmail servers), I ran into a snag.  Its not actually something I would have expected to ever hear&#8230; The actually call went like this:</p>
<p style="padding-left: 30px;">Client: &#8220;I&#8217;m not getting all of my mail&#8221;</p>
<p style="padding-left: 30px;">me: &#8220;Ok, what do you mean?&#8221;</p>
<p style="padding-left: 30px;">Client: &#8220;I mean, not all of my mail is coming to my outlook&#8221;</p>
<p style="padding-left: 30px;">me: &#8220;how do you know you are missing mail&#8221;</p>
<p style="padding-left: 30px;">Client: &#8220;When I email myself, I don&#8217;t get the email &#8211; so I&#8217;m not getting all of my mail&#8221;</p>
<p>The first thing I did was log into the website and looked at the email online &#8211; and all of the emails the client sent to himself were there (I think there were over 10).  I can understand why the client came to the conclusion that email was missing, but it turns out it was only email from him to him.</p>
<p>Google has decided that you don&#8217;t actually want to get emails from yourself using pop3.  If you want email from yourself, either log into the website or use IMAP.  Well, my clients like Outlook, so the website is out, and IMAP puts their email in a new folder structure below the personal folders where they are used to getting it &#8211; not to mention the how the folder structure works with the label system gmail:  my clients just don&#8217;t like it.  So, it has to be pop and it has to be outlook &#8211; and it has to work, including emails to themselves.  I was surprised at how many of my clients called with the same issue.  I thought &#8220;Wow, these guys like to talk to themselves alot&#8221;&#8230;</p>
<p>Anyway&#8230; the answer is simple: when setting up outlook, you have to use &#8220;Recent Mode&#8221;.  Your next question, how do I do that?  Simple, but not intuitive &#8211; put &#8220;recent:&#8221; infront of your email address when you setup outlook.  ***Warning*** if you may end up with duplicate email from the last 30 days of email when you make this change &#8211; but if you want email from you to you using pop and gmail &#8211; you don&#8217;t have a choice.</p>
<p>So, your email address in the outlook email account setting page should look like this:</p>
<p><img class="alignnone size-full wp-image-59" title="recentemail" src="http://sannsack.com/wp-content/uploads/2008/12/recentemail.jpg" alt="recentemail" width="585" height="459" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sannsack.com/tutorials/how-to-get-emails-from-yourself-using-gmail-and-pop3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
