<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kevin Worthington</title>
	
	<link>http://www.kevinworthington.com</link>
	<description>Nginx for Windows, Lighttpd for Windows, WordPress, iPhone, Gmail, Windows 7, Linux, and Tech</description>
	<lastBuildDate>Wed, 24 Feb 2010 22:30:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/KevinWorthington" /><feedburner:info uri="kevinworthington" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>KevinWorthington</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Nginx on Mac OS X Snow Leopard in 2 Minutes</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/euvbXp3Kh48/</link>
		<comments>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:30:14 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=739</guid>
		<description><![CDATA[A quick article to how to compile a basic version of the Nginx web server on Mac OS X 10.6.2 Snow Leopard. Includes step by step directions, and a script to automate the process.<p><a href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/">Nginx on Mac OS X Snow Leopard in 2 Minutes</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/" title="Permanent link to Nginx on Mac OS X Snow Leopard in 2 Minutes"><img class="post_image alignleft remove_bottom_margin" src="http://kwimg.com/wp-content/uploads/2010/02/nginx-mac-os-x-snow-leopard.jpg" width="500" height="474" alt="Nginx" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a>
</p><p><strong>Overview</strong><br />
This is a quick article to show you how I compiled a basic version of <a href="http://nginx.org/en/download.html" title="Download Nginx from nginx.org">Nginx 0.8.33</a> on <a href="http://www.apple.com/macosx/" title="Mac OS X Snow Leopard on Apple.com">Mac OS X 10.6.2 Snow Leopard</a>. The &#8220;2 minute&#8221; compilation that I mention in the title of this article is when using the script that I provide below. For the Do-It-Yourself (DIY) crowd, I&#8217;m breaking down the steps. Variations in your Mac&#8217;s specs, and your copy and paste skills may increase the total time to over 2 minutes.</p>
<p><strong>Prerequisites</strong><br />
First, if you do not already have it installed, <a href="http://developer.apple.com/technology/xcode.html" title="Download Xcode from apple.com">download Xcode from Apple&#8217;s website</a>, and run the installer from the .dmg file. For the record, the file I installed was called xcode321_10m2003_developerdvd.dmg, yours may be slightly different.</p>
<p><strong>Install PCRE</strong><br />
Nginx requires <a href="http://www.pcre.org/" title="PCRE - Perl Compatible Regular Expressions website">PCRE &#8211; Perl Compatible Regular Expressions</a> to build, I used <a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.01.tar.gz" title="Download PCRE 8.01 via anonymous FTP">PCRE version 8.01</a>. In a Terminal, run:<br />
<code>sudo curl -OL h ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.01.tar.gz > /usr/local/src/pcre-8.01.tar.gz</code><br />
<code>sudo mkdir -p /usr/local/src</code><br />
<code>cd /usr/local/src</code><br />
<code>tar xvzf pcre-8.01.tar.gz</code><br />
<code>cd pcre-8.01</code><br />
<code>./configure --prefix=/usr/local</code><br />
<code>make</code><br />
<code>sudo make install</code><br />
<code>cd ..</code></p>
<p><strong>Install Nginx</strong><br />
(You should still be in <code>/usr/local/src</code>, if you followed along from above.)<br />
<code>tar xvzf nginx-0.8.33.tar.gz</code><br />
<code>cd nginx-0.8.33</code><br />
<code>./configure --prefix=/usr/local --with-http_ssl_module</code><br />
<code>make</code><br />
<code>sudo make install</code></p>
<p><strong>Start Nginx</strong><br />
Assuming that you have <code>/usr/local</code> in your $PATH (<code>which nginx</code> should say:<code>/usr/local/sbin/nginx</code>), you can simply run:<br />
<code>sudo nginx</code><br />
Note: to add <code>/usr/local</code> to your $PATH variable, edit or create <code>~/.profile</code> to include it. For reference, mine currently looks like this:<br />
<code>PATH="/usr/bin:/bin:/usr/sbin:/sbin:<strong>/usr/local</strong>:/usr/local/sbin:/usr/local/bin:/usr/X11/bin:/opt/X11/bin"</code> &#8211; I emphasized in bold type what you need to add to your PATH.</p>
<p><strong>The 2 Minute way, using my script</strong><br />
All of the above instructions, in a <a href="http://kwimg.com/wp-content/uploads/2010/02/build-nginx.sh.txt" title="Download a small script to automate the build process of Nginx on Mac OS X">nice little script</a>. Save it to your Mac as build-nginx.sh, and run:<br />
<code>chmod a+x build-nginx.sh</code><br />
<code>sudo ./build-nginx.sh</code></p>
<p><strong>Conclusion</strong><br />
It&#8217;s a pretty quick process to get Nginx installed nicely on your Mac, especially if you use my script. This provides a very basic install, but it should get you moving in the right directions. If you have any comments, questions, or suggestions, I would love to hear your feedback, so leave a comment below.</p>
<p><a href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/">Nginx on Mac OS X Snow Leopard in 2 Minutes</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes+http://bit.ly/af9J3M" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;t=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;t=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/mm4tMTiPDteZPVkbfrbhV69dZ7w/0/da"><img src="http://feedads.g.doubleclick.net/~a/mm4tMTiPDteZPVkbfrbhV69dZ7w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mm4tMTiPDteZPVkbfrbhV69dZ7w/1/da"><img src="http://feedads.g.doubleclick.net/~a/mm4tMTiPDteZPVkbfrbhV69dZ7w/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/</feedburner:origLink></item>
		<item>
		<title>Your Comments Needed: Nginx for Windows and Lighttpd for Windows</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/yIAPEAN_LN4/</link>
		<comments>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 03:49:50 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=734</guid>
		<description><![CDATA[
Although I haven&#8217;t built Nginx for Windows and Lighttpd for Windows in a while, I need your help. I&#8217;m trying to determine if there is enough interest for me to create my Cygwin based builds again. So even if you have never left a comment here before, please do today. Please let me know:

if you [...]<p><a href="http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/">Your Comments Needed: Nginx for Windows and Lighttpd for Windows</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/" title="Permanent link to Your Comments Needed: Nginx for Windows and Lighttpd for Windows"><img class="post_image alignleft remove_bottom_margin" src="http://kwimg.com/images/survey.jpg" width="365" height="379" alt="Survey image" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a>
</p><p>Although I haven&#8217;t built Nginx for Windows and Lighttpd for Windows in a while, I need your help. I&#8217;m trying to determine if there is enough interest for me to create my Cygwin based builds again. So even if you have never left a comment here before, please do today. Please let me know:</p>
<ul>
<li>if you are interested in: Nginx and/or Lighttpd for Windows</li>
<li>which version of Windows you will be running on: Windows XP, Windows Vista, Windows 2003 Server, Windows 7</li>
<li>if your Windows version is 32-bit or 64-bit</li>
</ul>
<p>This is very important! Please leave a comment below right now. Thanks as always for reading!</p>
<p><a href="http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/">Your Comments Needed: Nginx for Windows and Lighttpd for Windows</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows+http://bit.ly/df70Ic" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;t=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;t=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/1RRzRjpP71tjwquJEuLDge8TMMI/0/da"><img src="http://feedads.g.doubleclick.net/~a/1RRzRjpP71tjwquJEuLDge8TMMI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1RRzRjpP71tjwquJEuLDge8TMMI/1/da"><img src="http://feedads.g.doubleclick.net/~a/1RRzRjpP71tjwquJEuLDge8TMMI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/</feedburner:origLink></item>
		<item>
		<title>Top 10 Articles of 2009</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/tjosEfNCIXo/</link>
		<comments>http://www.kevinworthington.com/top-10-articles-2009/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 18:43:25 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=688</guid>
		<description><![CDATA[Based on the popularity of the articles here on KevinWorthington.com, I&#8217;ve organized a list of the Top 10 for 2009:

18 Essential WordPress Plugins
9 More Essential WordPress Plugins
5 Tips to Fix Gmail Slow Load Issues
6 More Tips to Fix Gmail Slow Load Issues
Gmail Service is Down? No problem. Work Offline!
Microsoft Windows 7
Hide iPhone’s Default Apps
Lock the [...]<p><a href="http://www.kevinworthington.com/top-10-articles-2009/">Top 10 Articles of 2009</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://kwimg.com/wp-content/uploads/2009/12/top10.jpg"><img src="http://kwimg.com/wp-content/uploads/2009/12/top10-300x299.jpg" alt="Top 10" title="top10" class="alignleft size-medium wp-image-690" height="299" width="300" /></a>Based on the popularity of the articles here on <a href="http://www.kevinworthington.com/" title="KevinWorthington.com">KevinWorthington.com</a>, I&#8217;ve organized a list of the Top 10 for 2009:<span id="more-688"></span></p>
<ol>
<li><a href="http://www.kevinworthington.com/18-essential-wordpress-plugins/">18 Essential WordPress Plugins</a></li>
<li><a href="http://www.kevinworthington.com/9-more-essential-wordpress-plugins/">9 More Essential WordPress Plugins</a></li>
<li><a href="http://www.kevinworthington.com/5-tips-to-fix-gmail-slow-load-issues/">5 Tips to Fix Gmail Slow Load Issues</a></li>
<li><a href="http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/">6 More Tips to Fix Gmail Slow Load Issues</a></li>
<li><a href="http://www.kevinworthington.com/gmail-service-problem-work-offline/">Gmail Service is Down? No problem. Work Offline!</a></li>
<li><a href="http://www.kevinworthington.com/microsoft-windows-7/">Microsoft Windows 7</a></li>
<li><a href="http://www.kevinworthington.com/quick-tip-hide-iphones-default-apps/">Hide iPhone’s Default Apps</a></li>
<li><a href="http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/">Lock the Screen and Passcode Protect Your iPhone</a></li>
<li><a href="http://www.kevinworthington.com/quick-tip-iphone-usb-hard-drive/">Use your iPhone as a USB Hard Drive</a></li>
<li><a href="http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/">Quickly Scroll to the Top of Page on iPhone</a></li>
</ol>
<p><strong>Honorable mentions:</strong><br />
The following links are not quite articles, but they generate a lot of interest. These are old versions of two popular web servers, Nginx and Lighttpd, that I ported to run on Windows. These pages contain links to download these software packages:</p>
<ul>
<li><a href="http://www.kevinworthington.com/nginx-for-windows/">Nginx For Windows</a></li>
<li><a href="http://www.kevinworthington.com/category/computers/lighttpd/">Lighttpd For Windows</a></li>
</ul>
<p><strong>Other links of interest:</strong><br />
You may want to browse through all the archives to see what else may be of interest to you:</p>
<ul>
<li><a href="http://www.kevinworthington.com/archives/">Archives</a></li>
</ul>
<p>This site is using Thesis, an advanced, yet easy-to-use WordPress theme and framework. If you are currently using WordPress, or are thinking about using it, you must also consider using Thesis. It is really easy to use, saves a ton of time, and has fantastic features. The link has a lot of information, including video tutorials and information about the excellent support and community around it. Please check it out:</p>
<ul>
<li><a href="http://www.kevinworthington.com/recommends/Thesis/">Thesis</a></li>
</ul>
<p>Finally, if you do not yet have web hosting for your own domain, click that last Dreamhost link. They allow you to host unlimited domains, unlimited MySQL databases, and to use unlimited bandwidth, all for around $7.95/month, which is not only unheard of in the web hosting business, but is AWESOME. Check them out today:</p>
<ul>
<li><a href="http://www.kevinworthington.com/recommends/Dreamhost/">Dreamhost</a></li>
</ul>
<p>If you need help installing WordPress, <a href="http://www.kevinworthington.com/recommends/Thesis/">Thesis</a>, or you need help getting set up on <a href="http://www.kevinworthington.com/recommends/Dreamhost/">Dreamhost</a>, please <a href="http://www.kevinworthington.com/contact/" title="Contact Kevin Worthington here">contact me</a> &#8211; I&#8217;d be more than happy to help you.</p>
<p><a href="http://kwimg.com/wp-content/uploads/2009/12/new-year-fireworks.jpg"><img src="http://kwimg.com/wp-content/uploads/2009/12/new-year-fireworks-300x185.jpg" alt="Fireworks on New Year's" title="new-year-fireworks" class="alignleft size-medium wp-image-691" height="185" width="300" /></a></p>
<p>Have a great New Year&#8217;s Eve! See you in 2010! Thanks for stopping by.</p>
<p><a href="http://www.kevinworthington.com/top-10-articles-2009/">Top 10 Articles of 2009</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Top+10+Articles+of+2009+http://bit.ly/6zraDT" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/top-10-articles-2009/&amp;title=Top+10+Articles+of+2009" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/top-10-articles-2009/&amp;title=Top+10+Articles+of+2009" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/top-10-articles-2009/&amp;t=Top+10+Articles+of+2009" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/top-10-articles-2009/&amp;t=Top+10+Articles+of+2009&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/top-10-articles-2009/&amp;title=Top+10+Articles+of+2009" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Top 10 Articles of 2009" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/top-10-articles-2009/&amp;title=Top+10+Articles+of+2009" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Top 10 Articles of 2009" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/HeiEmEggXkEY0YdyfW1lHkM3akc/0/da"><img src="http://feedads.g.doubleclick.net/~a/HeiEmEggXkEY0YdyfW1lHkM3akc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HeiEmEggXkEY0YdyfW1lHkM3akc/1/da"><img src="http://feedads.g.doubleclick.net/~a/HeiEmEggXkEY0YdyfW1lHkM3akc/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/top-10-articles-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/top-10-articles-2009/</feedburner:origLink></item>
		<item>
		<title>9 More Essential WordPress Plugins</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/cJocTP21GNo/</link>
		<comments>http://www.kevinworthington.com/9-more-essential-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:47:27 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[PHP Widgetify]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Similar Posts]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[What Would Seth Godin Do]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[essential]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=654</guid>
		<description><![CDATA[In this article, I discuss 9 more plugins that I consider essential for use on any personal blog. This is a follow-up to my previous article where I discussed 18 essential WordPress plugins. All of these plugins are in use and active on this site, so you know that I really believe in the power of these plugins. <p><a href="http://www.kevinworthington.com/9-more-essential-wordpress-plugins/">9 More Essential WordPress Plugins</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><a style="float: left; padding: 0px 6px;" href="http://kwimg.com/images/wordpress.png"><img title="WordPress" src="http://kwimg.com/images/wordpress.png" style="border: 0px none;" height="300" width="300" alt="WordPress" /></a></p>
<p>In my last article, <a href="http://www.kevinworthington.com/18-essential-wordpress-plugins/" title="18 Essential WordPress Plugins">18 Essential WordPress Plugins</a>, I discussed 18 plugins that I consider essential for use on any personal blog. I personally use all of those plugins right here on this site. </p>
<p>That should say something about how useful I truly find those particular plugins.</p>
<p>Since then, I realized that I have neglected a few plugins, so I&#8217;d like to talk about them here:<span id="more-654"></span></p>
<p>Category: <strong>Appearance / Presentation</strong></p>
<ul>
<li>
1. <a href="http://rmwebsec.com/portfolio" title="PHP Widgetify plugin">PHP Widgetify</a> &#8211; <em>&#8220;Execute phpcode fast and easy with this simple code-widget.&#8221;</em> This plugin works similarly to the built in WordPress &#8220;widgets,&#8221; but the main difference is that you can execute PHP code from within it.
</li>
<li>
2. <a href="http://richardkmiller.com/wordpress-plugin-what-would-seth-godin-do" title="What Would Seth Godin Do plugin">What Would Seth Godin Do</a> &#8211; <em>&#8220;Displays a custom welcome message to new visitors and another to return visitors.&#8221;</em> This is a nice little plugin that checks if your site&#8217;s visitor has previously been to your site. You then are able to display an appropriate note. On this site, I urge people to <a href="http://feeds.feedburner.com/KevinWorthington" title="Subscribe to my RSS feed for FREE">Subscribe to my RSS feed</a>, and to <a href="http://twitter.com/kworthington" title="Follow Me on Twitter - @kworthington">Follow Me on Twitter</a> using this plugin.
</li>
<li>
3. <a href="http://rmarsh.com/plugins/similar-posts/" title="Similar Posts plugin">Similar Posts</a> &#8211; <em>&#8220;Displays a highly configurable list of related posts. Similarity can be based on any combination of word usage in the content, title, or tags.&#8221;</em> This is a handy plugin that displays links to other articles or posts on your site which have similar keywords and characteristics.
</li>
<li>
4. <a href="http://bed-and-bedroom.com/random-pages-widget/" title="Random Pages widget plugin">Random Pages widget</a> &#8211; <em>&#8220;This is a widget that displays a list of random pages/posts on your widgetized sidebar.&#8221;</em> This is fairly self-explanatory, I hope.
</li>
<li>
5. <a href="http://txfx.net/wordpress-plugins/subscribe-to-comments/" title="Subscribe To Comments plugin">Subscribe To Comments</a> &#8211; <em>&#8220;Allows readers to receive notifications of new comments that are posted to an entry.&#8221;</em> Enough said for this plugin too.
</li>
</ul>
<p>Category: <strong>Search Engine Optimization (SEO)</strong></p>
<ul>
<li>
6. <a href="http://www.viper007bond.com/wordpress-plugins/clean-archives-reloaded/" title="Clean Archives Reloaded plugin">Clean Archives Reloaded</a> &#8211; <em>&#8220;A slick, Javascript-enhanced post archive list generator for WordPress 2.5+.&#8221;</em> Rather than have a ton of links for your archives on your sidebar, you can create a single <a href="http://www.kevinworthington.com/archives/" title="Click here to see my collapsible Archives page">Archives page</a> that uses a collapsible and expandable view of all posts in your archives.
</li>
<li>
7. <a href="http://elasticdog.com/2004/09/optimal-title/" title="Optimal Title plugin">Optimal Title</a> &#8211; <em>&#8220;Mirrors the function of wp_title() exactly, but moves the position of the &#8217;separator&#8217; to after the title rather than before.&#8221;</em> Having the title displayed before your site name is better for SEO, and usually helps your Google PageRank.
</li>
</ul>
<p>Category: <strong>Social Media / Social Networking</strong></p>
<ul>
<li>
8. <a href="http://wpburn.com/wordpress-plugins/wp-followme-plugin" title="FollowMe plugin">FollowMe</a> &#8211; <em>&#8220;WP FollowMe is a WordPress plugin that allow you to add a Twitter Follow me badge on your WordPress blog.&#8221;</em> A nice little flash object that you can customize the look, feel, and location of.
</li>
<li>
9. <a href="http://ajaydsouza.com/wordpress/plugins/twittercounter/" title="TwitterCounter plugin">TwitterCounter</a> &#8211; <em>&#8220;Integrate TwitterCounter.com badges on your blog to display the number of followers you have on Twitter.&#8221;</em> Pretty straight forward, right?
</li>
</ul>
<p>I hope you enjoyed this follow-up list of WordPress plugins. These plugins work really well for me, so I hope you give some of them a try on your sites.</p>
<p>Which plugins do you consider essential? Please leave a comment below, I&#8217;m really interested to get your feedback.</p>
<p>To get immediate notifications for new articles and other technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><a href="http://www.kevinworthington.com/9-more-essential-wordpress-plugins/">9 More Essential WordPress Plugins</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=9+More+Essential+WordPress+Plugins+http://bit.ly/7sfHZE" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;title=9+More+Essential+WordPress+Plugins" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;title=9+More+Essential+WordPress+Plugins" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;t=9+More+Essential+WordPress+Plugins" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;t=9+More+Essential+WordPress+Plugins&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;title=9+More+Essential+WordPress+Plugins" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="9 More Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/9-more-essential-wordpress-plugins/&amp;title=9+More+Essential+WordPress+Plugins" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="9 More Essential WordPress Plugins" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/fZch1FSI81ZbpmPJwW9KigbQ5Bk/0/da"><img src="http://feedads.g.doubleclick.net/~a/fZch1FSI81ZbpmPJwW9KigbQ5Bk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fZch1FSI81ZbpmPJwW9KigbQ5Bk/1/da"><img src="http://feedads.g.doubleclick.net/~a/fZch1FSI81ZbpmPJwW9KigbQ5Bk/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/9-more-essential-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/9-more-essential-wordpress-plugins/</feedburner:origLink></item>
		<item>
		<title>18 Essential WordPress Plugins</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/MJI8K1DImKM/</link>
		<comments>http://www.kevinworthington.com/18-essential-wordpress-plugins/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:30:37 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[askapache]]></category>
		<category><![CDATA[auto-close comments]]></category>
		<category><![CDATA[broken link checker]]></category>
		<category><![CDATA[google xml sitemaps]]></category>
		<category><![CDATA[gzip output]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[recaptcha]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo friendly images]]></category>
		<category><![CDATA[seo slugs]]></category>
		<category><![CDATA[theme tester]]></category>
		<category><![CDATA[w3 total cache]]></category>
		<category><![CDATA[wordpress database backup]]></category>
		<category><![CDATA[wordpress exploit scanner]]></category>
		<category><![CDATA[wp js]]></category>
		<category><![CDATA[wp minify]]></category>
		<category><![CDATA[wp-spamfree]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=640</guid>
		<description><![CDATA[In this article, I'll discuss 18 plugins that I consider essential for use on any personal blog. These plugins are all in use and activate currently on this site, so you know that I really believe in the power of these plugins.<p><a href="http://www.kevinworthington.com/18-essential-wordpress-plugins/">18 Essential WordPress Plugins</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><a style="padding: 0px 6px; float: left;" href="http://kwimg.com/images/wordpress.png"><img title="wordpress" src="http://kwimg.com/images/wordpress.png" style="border: 0px none ;" height="300" width="300" alt="WordPress" /></a></p>
<p><a href="http://wordpress.org/" title="Wordpress">WordPress</a> is an open source blog publishing platform that is also widely used as a content management system (CMS). As of September 2009, <a href="http://andrewapeterson.com/2009/09/wordpress-usage-202-million-worldwide-62-8-million-us/" title="Wordpress powers millions of websites">Wordpress is used by 62.8 million websites in the US and 202 million websites worldwide</a>. By itself, Wordpress is a very powerful and flexible system that is easy to get up and running, as well as easy to maintain. But when combined with the available Wordpress plugins, it becomes an unstoppable powerhouse of a platform.</p>
<p>In this article, I&#8217;ll discuss 18 plugins that I consider essential for use on any personal blog. These plugins are all in use on this site, so you know that I really believe in the power of these plugins. Ready? Here we go:<span id="more-640"></span></p>
<p>Category: <strong>Spam/Security</strong></p>
<ul>
<li>1. <a href="http://akismet.com/" title="Akismet">Akismet</a> &#8211; &#8220;Akismet checks your comments against the Akismet web service to see if they look like spam or not.&#8221; This plugin is indispensable because it does the dirty work of weeding out spam for you.</li>
<li>2. <a href="http://recaptcha.net/plugins/wordpress/" title="reCAPTCHA">reCAPTCHA</a> &#8211; &#8220;Integrates a reCAPTCHA with Wordpress.&#8221; reCAPTCHA is another mechanism to help alleviate the spam problem. It makes sure that a human is responsible for the comment by showing a graphic with 2 words that the commenter must type in prior to submitting.</li>
<li>3. <a href="http://wpantivirus.com/" title="AnitVirus">AntiVirus</a> &#8211; &#8220;AntiVirus for WordPress is a smart and effective solution to protect your blog against exploits and spam injections.&#8221; This is another valuable plugin that helps keep your Wordpress installation safe and secure.</li>
<li>4. <a href="http://wordpress.org/extend/plugins/askapache-password-protect/" title="AskApache Password Protect">AskApache Password Protect</a> &#8211; &#8220;Advanced Security: Password Protection, Anti-Spam, Anti-Exploits, etc.&#8221; This plugin helps you to lock down the Apache server that Wordpress is installed upon.</li>
<li>5. <a href="http://www.hybrid6.com/webgeek/plugins/wp-spamfree" title="WP-SpamFree">WP-SpamFree</a> &#8211; &#8220;An extremely powerful anti-spam plugin that virtually eliminates comment spam. Finally, you can enjoy a spam-free WordPress blog! Includes spam-free contact form feature as well.&#8221; One last plugin to help with the spam problem &#8211; but more importantly, this is what I use to power my <a href="/contact/" title="Contact me">Contact</a> page. It&#8217;s very easy to set up, and it allows you to hide your email address from evil email harvesting scripts.</li>
</ul>
<p>Category: <strong>Search Engine Optimization (SEO)</strong></p>
<ul>
<li>6. <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" title="Google XML Sitemaps">Google XML Sitemaps</a> &#8211; &#8220;This plugin will generate a sitemaps.org compatible sitemap of your WordPress blog which is supported by Ask.com, Google, MSN Search and YAHOO.&#8221;</li>
<li>7. <a href="http://elasticdog.com/2004/09/optimal-title/" title="Optimal Title">Optimal Title</a> &#8211; &#8220;Mirrors the function of wp_title() exactly, but moves the position of the &#8217;separator&#8217; to after the title rather than before.&#8221;</li>
<li>8. <a href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images" title="SEO Friendly Images">SEO Friendly Images</a> &#8211; &#8220;Automatically adds alt and title attributes to all your images. Improves traffic from search results and makes them W3C/xHTML valid as well.&#8221;</li>
<li>9. <a href="http://www.vretoolbar.com/news/2007/04/01/seo-slugs-wordpress-plugin/" title="SEO Slugs">SEO Slugs</a> &#8211; &#8220;Removes common words like &#8216;a&#8217;, &#8216;the&#8217;, &#8216;in&#8217; from post slugs to improve SEO.&#8221;</li>
</ul>
<p>(The above plugins&#8217; default descriptions were self-explanatory, so I felt no need to add anything&#8230;)</p>
<p>Category: <strong>Page Speed</strong></p>
<ul>
<li>10. <a href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/" title="W3 Total Cache">W3 Total Cache</a> &#8211; &#8220;Dramatically improve the user experience of your blog. Add transparent page caching, database caching, minify and content delivery network (CDN) functionality and more to WordPress.&#8221; I previously used WP-SuperCache, but W3 Total Cache seems to work much better, and it is equally easy to setup and maintain.</li>
<li>11. <a href="http://ilfilosofo.com/blog/2008/02/22/wordpress-gzip-plugin/" title="GZIP Output">GZIP Output.</a> &#8211; &#8220;Allow GZIPped output for your WordPress blog. Restores functionality removed in WordPress 2.5.&#8221; Gzipping each page makes the page smaller, causing it to use less bandwidth, as well as improving the load time.</li>
<li>12. <a href="http://www.halmatferello.com/lab/wp-js/" title="">WP JS</a> &#8211; &#8220;Automatically GZIP your JS files and applies jsmin algorithm. Also add JavaScript files to specific posts/pages.&#8221; Another plugin that speeds up laod times.</li>
<li>13. <a href="http://omninoggin.com/projects/wordpress-plugins/wp-minify-wordpress-plugin/" title="WP Minify">WP Minify</a> &#8211; &#8220;This plugin uses the Minify engine to combine and compress JS and CSS files to improve page load time.&#8221; Compresses javascript files and cascading style sheets for faster load times.</li>
</ul>
<p>Category: <strong>Administration</strong></p>
<ul>
<li>14. <a href="http://ocaoimh.ie/theme-tester/" title="Theme Tester">Theme Tester</a> &#8211; &#8220;Allow an admin to test new themes without showing your blog visitors.&#8221; Very handy for testing before going live with a new theme.</li>
<li>15. <a href="http://ocaoimh.ie/exploit-scanner/" title="WordPress Exploit Scanner">WordPress Exploit Scanner</a> &#8211; &#8220;Scans your WordPress site for possible exploits.&#8221; An easy to use interface that does the heavy lifting in keeping your Wordpress install secure.</li>
<li>16. <a href="http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/" title="Broken Link Checker">Broken Link Checker</a> &#8211; &#8220;Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.&#8221; This ultimately helps you to keep your site&#8217;s SEO in top shape. It makes it very easy to identify and fix broken links.</li>
<li>17. <a href="http://ilfilosofo.com/blog/wp-db-backup/" title="WordPress Database Backup">WordPress Database Backup</a> &#8211; &#8220;On-demand backup of your WordPress database. Navigate to Tools -> Backup to get started.&#8221; Download a full backup of your Wordpress database on demand, or schedule it to email a weekly backup.</li>
<li>18. <a href="http://codex.wordpress.org/Plugins/Auto_shutoff_comments" title="Auto-Close Comments">Auto-Close Comments</a> &#8211; &#8220;Autoclose comments after 21 days.&#8221; This plugin is very handy since most of the time people do not comment on older posts. It is another way to thwart spammers.</li>
</ul>
<p>I hope you enjoyed this list of Wordpress plugins. There are certainly many others that are valuable and extremely useful. My goal was to choose my top picks and hopefully let you know about few plugins that you have not already heard of. These plugins work really well for me &#8211; I hope you give some of them a try, and that they work well for your site.</p>
<p>Are there any that I have forgotten that should be on this list? Let me know in the comments below.</p>
<p>To get immediate notifications for new articles and other technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><a href="http://www.kevinworthington.com/18-essential-wordpress-plugins/">18 Essential WordPress Plugins</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=18+Essential+WordPress+Plugins+http://bit.ly/s8aG8" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;title=18+Essential+WordPress+Plugins" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;title=18+Essential+WordPress+Plugins" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;t=18+Essential+WordPress+Plugins" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;t=18+Essential+WordPress+Plugins&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;title=18+Essential+WordPress+Plugins" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="18 Essential WordPress Plugins" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/18-essential-wordpress-plugins/&amp;title=18+Essential+WordPress+Plugins" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="18 Essential WordPress Plugins" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/aJDFFhsg_8U0_mOgvjoJjZw3eeI/0/da"><img src="http://feedads.g.doubleclick.net/~a/aJDFFhsg_8U0_mOgvjoJjZw3eeI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aJDFFhsg_8U0_mOgvjoJjZw3eeI/1/da"><img src="http://feedads.g.doubleclick.net/~a/aJDFFhsg_8U0_mOgvjoJjZw3eeI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/18-essential-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/18-essential-wordpress-plugins/</feedburner:origLink></item>
		<item>
		<title>Microsoft Windows 7</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/PcUWNZmLE2A/</link>
		<comments>http://www.kevinworthington.com/microsoft-windows-7/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 23:56:48 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows7]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=607</guid>
		<description><![CDATA[Microsoft’s latest operating system, Windows 7 Microsoft Windows 7 was released on Thursday October 22, 2009. The buzz around the Internet and traditional media outlets has been overwhelmingly positive, even a week later. Links: Windows 7 reviews still shine one week in, Review: Windows 7 Is Microsoft’s Best Yet, Windows 7 review: like Vista, but good.<p><a href="http://www.kevinworthington.com/microsoft-windows-7/">Microsoft Windows 7</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Microsoft&#8217;s latest operating system, <a href="http://www.amazon.com/gp/product/B002DHGMVY?ie=UTF8&#038;tag=20-ref-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B002DHGMVY">Windows 7</a> was released on Thursday October 22, 2009. The buzz around the Internet and traditional media outlets has been overwhelmingly positive, even a week later. Links: <a href="http://www.csmonitor.com/Innovation/Horizons/2009/1029/windows-7-reviews-still-shines-one-week-in">Windows 7 reviews still shine one week in</a>, <a href="http://www.guardian.co.uk/technology/2009/oct/22/windows-7-review">Review: Windows 7 Is Microsoft’s Best Yet</a>, <a href="http://www.guardian.co.uk/technology/2009/oct/22/windows-7-review">Windows 7 review: like Vista, but good</a>.<br />
<a style="padding: 0px 6px; float: left;" href="http://kwimg.com/images/windows_7.jpg"><img title="Windows7" src="http://kwimg.com/images/windows_7.jpg" style="border: 0px none ;" height="390" width="390" alt="Windows7" /></a><br />
As a user who has installed the public beta and the release candidate, I can honestly say that this is the best version of Windows that Microsoft has built and released to date. And you would expect that to be the case, particularly after the disaster that was Windows Vista.<span id="more-607"></span><br />
I should mention that I have installed these versions of <a href="http://www.amazon.com/gp/product/B002DHGMVY?ie=UTF8&#038;tag=20-ref-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B002DHGMVY">Microsoft Windows 7</a> on my Macbook Pro, using <a href="http://en.wikipedia.org/wiki/Boot_Camp_(software)">Boot Camp</a>, and mostly since I purchased my Mac I have been running <a href="http://www.amazon.com/gp/product/B001AMHWP8?ie=UTF8&#038;tag=20-ref-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B001AMHWP8">Mac OS X (Snow Leopard)</a> exclusively. I have booted Windows 7 using <a href="http://www.amazon.com/gp/product/B002Q72JB8?ie=UTF8&#038;tag=20-ref-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B002Q72JB8">VMware Fusion</a> whenever I wanted to play with it.<br />
Windows 7 is pretty fast, and the Microsoft Security Essentials anti-virus suite runs very nicely. It is light weight and generally stays out of the way while protecting the system.<br />
There are many specifics to be aware of with this release. First, if you have a capable 64-bit machine, you should definitely install the 64-bit version of Windows 7. It has the ability to run faster than its 32-bit counterpart, while utilizing 4 GB+ of memory. The 32-bit version tops out at 3 GB. Also, if you have at least Windows 2000 (XP and Vista included), you are eligible to buy the upgrade version of the operating system, and use it to do a clean install, using what Microsoft refers to as the &#8220;Custom&#8221; installation option. A fresh install is always a best-practice way to install Windows, and Windows 7 is no exception. Backup all your data (to an external hard drive or USB thumb drive) and have your installation media available for applications like <a href="http://www.amazon.com/gp/product/B000HCVR3A?ie=UTF8&#038;tag=20-ref-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000HCVR3A">Microsoft Office</a> ready for your fresh installation. You can then use the excellent <a href="http://ninite.com/">Ninite</a> to install all the freebie applications from the web: Firefox, VLC, Microsoft Security Essentials, iTunes, etc.<br />
While I don&#8217;t think that Windows 7 is bulletproof or the best operating system ever, it is the best Windows OS to date. If you are running the 8 year old Windows XP, you will be better off on Windows 7. Vista users will also be better off on 7, since it runs about 20 &#8211; 30% faster on the same hardware.<br />
What do you think? Is Windows 7 worth it? Will you upgrade soon? Let me know.</p>
<p><a href="http://www.kevinworthington.com/microsoft-windows-7/">Microsoft Windows 7</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Microsoft+Windows+7+http://bit.ly/dn7Ya" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/microsoft-windows-7/&amp;title=Microsoft+Windows+7" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/microsoft-windows-7/&amp;title=Microsoft+Windows+7" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/microsoft-windows-7/&amp;t=Microsoft+Windows+7" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/microsoft-windows-7/&amp;t=Microsoft+Windows+7&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/microsoft-windows-7/&amp;title=Microsoft+Windows+7" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Microsoft Windows 7" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/microsoft-windows-7/&amp;title=Microsoft+Windows+7" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Microsoft Windows 7" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ZldZzE3ESUjEWkYMxSn5rYUx7oc/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZldZzE3ESUjEWkYMxSn5rYUx7oc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZldZzE3ESUjEWkYMxSn5rYUx7oc/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZldZzE3ESUjEWkYMxSn5rYUx7oc/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/microsoft-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/microsoft-windows-7/</feedburner:origLink></item>
		<item>
		<title>Gmail Service is Down. No problem. Work Offline!</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/LpDpVu7SL4k/</link>
		<comments>http://www.kevinworthington.com/gmail-service-problem-work-offline/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:37:10 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[gears]]></category>
		<category><![CDATA[gfail]]></category>
		<category><![CDATA[gmail fail]]></category>
		<category><![CDATA[gmail is down]]></category>
		<category><![CDATA[gmail offline]]></category>
		<category><![CDATA[google gears]]></category>
		<category><![CDATA[google gmail]]></category>
		<category><![CDATA[googlemail]]></category>
		<category><![CDATA[offline]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=498</guid>
		<description><![CDATA[Having nervous ticks due to Google's Gmail service being down? Learn how to use Gmail offline. No connection to the Internet needed.<p><a href="http://www.kevinworthington.com/gmail-service-problem-work-offline/">Gmail Service is Down. No problem. Work Offline!</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>As of around 12:53 PM PST, Gmail was (and still is) down.</strong><br />
On their <a href="http://mail.google.com/support/?hl=en">status page</a> it said:</p>
<blockquote><p><strong>Google Apps Status</strong><br />September 1, 2009 12:53:00 PM PDT<br />
We&#8217;re aware of a problem with Google Mail affecting a majority of users. The affected users are unable to access Google Mail. We will provide an update by September 1, 2009 1:53:00 PM PDT detailing when we expect to resolve the problem. Please note that this resolution time is an estimate and may change.</p></blockquote>
<p><strong>Having nervous ticks due to Google&#8217;s Gmail service being down? Read on&#8230;</strong><span id="more-498"></span></p>
<p><strong>Gmail Labs&#8217; Offline feature</strong><br />
Gmail has an interesting feature called &#8220;Offline&#8221; that allows you to read, view, search, reply, and compose email without being connected to Google, or the Internet at all for that matter. In the Settings tab, enable &#8220;Offline&#8221; from Gmail Labs. You can be completely disconnected and still use Gmail. (Keep reading for more setup information.)</p>
<p><strong>How does &#8220;Offline&#8221; work?</strong><br />
Google has an interesting free service called <a href="http://gears.google.com">Google Gears</a>, which allows you to utilize Gmail&#8217;s offline feature. Simple visit the link and install Gears. Then, within Gmail, enable the &#8220;Offline&#8221; feature. Then all your email messages start to download to your hard drive, making search, compose, etc available to you even if Gmail&#8217;s servers are down.<br />
Note that you should not install Gears on a public computer or a computer that is not yours. You personal info IS stored on the local hard drive.</p>
<p><strong>Install Gears today!</strong><br />
Once Gmail is back up, install <a href="http://gears.google.com">Google Gears</a> and help overcome the panic that sets in from not being able to access Gmail!</p>
<p><strong>How to verify that it&#8217;s not just your connection:</strong><br />
A great site that I used to <a href="http://downforeveryoneorjustme.com/mail.google.com">check if Gmail was having issues</a>. Useful for other sites as well.</p>
<p><strong>UPDATES:</strong></p>
<blockquote><p><strong>Google Apps Status</strong><br />
September 1, 2009 1:02:00 PM PDT<br />
Google Mail service has already been restored for some users, and we expect a resolution for all users within the next 1.2 hours. Please note this time frame is an estimate and may change.</p></blockquote>
<blockquote><p><strong>Google Apps Status</strong><br />
September 1, 2009 1:02:00 PM PDT<br />
We are continuing to investigate this issue. We will provide an update by September 1, 2009 2:16:00 PM PDT detailing when we expect to resolve the problem.</p></blockquote>
<p>2:18 PM PST: Gmail appears to be back online, for me at least. The <a href="http://www.google.com/appsstatus#hl=en">Google status page</a> still reports it being down, so it may not be back for everyone yet. <a href="http://downforeveryoneorjustme.com/mail.google.com">Down for everyone or just me</a> is also reporting that Gmail is still down.</p>
<blockquote><p><strong>Google Apps Status</strong><br />
September 1, 2009 2:13:00 PM PDT<br />
We are continuing to investigate this issue. We will provide an update by September 1, 2009 3:13:00 PM PDT detailing when we expect to resolve the problem.</p></blockquote>
<p><strong>Gmail users may also like my previous articles:</strong><br />
<a href="/5-tips-to-fix-gmail-slow-load-issues/">5 Tips to Fix Gmail Slow Load Issues</a><br />
and<br />
<a href="/6-tips-fix-gmail-slow-load-issues/">6 More Tips to Fix Gmail Slow Load Issues</a></p>
<p><strong>Thanks for visiting the site. Please feel free to share this article and this site with your friends. (Use the Share/Save box below.) Don&#8217;t forget to rate this article too.</strong></p>
<p><a href="http://www.kevinworthington.com/gmail-service-problem-work-offline/">Gmail Service is Down. No problem. Work Offline!</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Gmail+Service+is+Down.+No+problem.+Work+Offline%21+http://bit.ly/8zsq9u" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;title=Gmail+Service+is+Down.+No+problem.+Work+Offline%21" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;title=Gmail+Service+is+Down.+No+problem.+Work+Offline%21" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;t=Gmail+Service+is+Down.+No+problem.+Work+Offline%21" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;t=Gmail+Service+is+Down.+No+problem.+Work+Offline%21&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;title=Gmail+Service+is+Down.+No+problem.+Work+Offline%21" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/gmail-service-problem-work-offline/&amp;title=Gmail+Service+is+Down.+No+problem.+Work+Offline%21" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Gmail Service is Down. No problem. Work Offline!" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/KmiAYFgjaMcrOos7e4ojKJVKYHo/0/da"><img src="http://feedads.g.doubleclick.net/~a/KmiAYFgjaMcrOos7e4ojKJVKYHo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KmiAYFgjaMcrOos7e4ojKJVKYHo/1/da"><img src="http://feedads.g.doubleclick.net/~a/KmiAYFgjaMcrOos7e4ojKJVKYHo/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/gmail-service-problem-work-offline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/gmail-service-problem-work-offline/</feedburner:origLink></item>
		<item>
		<title>6 More Tips to Fix Gmail Slow Load Issues</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/IzHCPcaPp78/</link>
		<comments>http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 07:15:13 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Fast]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=475</guid>
		<description><![CDATA[Back in January, I wrote an article called 5 Tips to Fix Gmail Slow Load Issues. This article expands on this topic with 6 More Tips to Fix Gmail Slow Load Issues.<p><a href="http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/">6 More Tips to Fix Gmail Slow Load Issues</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><img src="http://kwimg.com/wp-content/uploads/2009/08/Gmail-logo.jpg" alt="Gmail logo 6 More Tips to Fix Gmail Slow Load Issues" title="Gmail" width="200" height="83" class="size-full wp-image-481" />
<p>Back in <a href="/2009/01/">January</a>, I wrote an article called <a href="/5-tips-to-fix-gmail-slow-load-issues/">5 Tips to Fix Gmail Slow Load Issues</a>. Since then, it&#8217;s become the most visited article on this site, with the majority of the traffic coming from Google searches. Due to the popularity of that article, I have decided to expand on this topic and bring 6 more tips to help speed up Gmail.</p>
<p>Some background of the problem: Gmail tends to load slowly when you first log in and it&#8217;s also slow when switching between folders &#8211; Inbox to Spam, and after clicking &#8220;Send&#8221; or &#8220;Archive,&#8221; etc. To re-cap the previous article, here are my original 5 ways to speed up performance:</p>
<ol>
<li><strong>Decrease the number of experimental &#8220;<a href="https://mail.google.com/mail/#settings/labs">Gmail Labs</a>&#8221; settings that you have enabled.</strong></li>
<li><strong>Decrease the number of browser extensions or plugins.</strong></li>
<li><strong>Use <a href="https://mail.google.com/mail/h/">HTML mode</a>.</strong></li>
<li><strong>Use <a href="https://mail.google.com/mail/x/">Mobile mode</a>.</strong></li>
<li><strong>Use a third-party email client, such as <a href="http://www.mozillamessaging.com/en-US/thunderbird/">Thunderbird</a>.</strong></li>
</ol>
<p>For more in-depth explanations of the above 5 points, please review the <a href="/5-tips-to-fix-gmail-slow-load-issues/">original article</a>.</p>
<img src="http://kwimg.com/wp-content/uploads/2009/08/Gmail-Envelope-Logo.png" alt="Gmail Envelope Logo 6 More Tips to Fix Gmail Slow Load Issues" title="Gmail" width="160" height="118" class="size-full wp-image-485" />
<p>And now,  6 more tips:</p>
<ol>
<li>If loading up Gmail is the slowest aspect of your entire Gmail experience, this tip will significantly help:<br />
<strong>Add the ?nocheckbrowser argument to the URL: <a href="https://mail.google.com/gmail?nocheckbrowser">https://mail.google.com/gmail?nocheckbrowser</a></strong>. This is an extremely easy and effective hack that makes a dramatic difference to the initial page load.</li>
<li><strong><a href="https://mail.google.com/mail/?labs=0">Disable the experimental labs features</a>.</strong> This is much like point number 1 from my <a href="/5-tips-to-fix-gmail-slow-load-issues/">previous article</a>, but can be very useful. Adding the ?labs=0 argument to the URL can help you get back to a usable Gmail window. Think of it as an ejector seat for Labs. This is a shortcut step to disabling features one by one, as explained previously.</li>
<li><strong>Disable chat.</strong> Scroll to the bottom of the screen and click the &#8220;standard without chat&#8221; text link in the footer. <strong>Bonus</strong>: if you never use chat, take it one step further and disable the chat history feature on the settings menu under the &#8220;chat&#8221; tab.</li>
<li><strong>Show fewer messages.</strong> Reduce the number of &#8216;conversations&#8217; shown on each page by adjusting the &#8216;maximum page size&#8217; option to &#8220;25&#8243; under &#8220;General&#8221; settings. It should say: &#8220;Maximum page size: Show 25 conversations per page.&#8221; This will get Gmail ready faster.</li>
<li><strong>Remove the Skype Add-on.</strong> If you are a Skype user and are running Firefox 3.5 with the Skype add-on, it is known to causes sluggishness. Remove the add-on, and you will see a speed improvement. Please note that other extensions/add-ons/plug-ins can cause speed issues, but the Skype add-on using Firefox 3.5+ is a known issue by many, so it&#8217;s a great one to start with.</li>
<li><strong>Clear your browser&#8217;s cache.</strong> Sometimes the simplest thing works wonders. A stale browser cache may leave some unnecessary remnants behind. Flush the browser cache and start with a clean slate. Most browsers have this in the &#8220;Options&#8221; or &#8220;Preferences&#8221; menu.</li>
</ol>
<p>These tips should help you to increase Gmail load times and make the transition time between folders faster. If you have any other tips to share, please leave a comment.</p>
<p><a href="http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/">6 More Tips to Fix Gmail Slow Load Issues</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues+http://bit.ly/O97HY" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;title=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;title=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;t=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;t=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;title=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/&amp;title=6+More+Tips+to+Fix+Gmail+Slow+Load+Issues" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="6 More Tips to Fix Gmail Slow Load Issues" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/OhXrKbBt_58UnuYSJZb5g6Mnjo4/0/da"><img src="http://feedads.g.doubleclick.net/~a/OhXrKbBt_58UnuYSJZb5g6Mnjo4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OhXrKbBt_58UnuYSJZb5g6Mnjo4/1/da"><img src="http://feedads.g.doubleclick.net/~a/OhXrKbBt_58UnuYSJZb5g6Mnjo4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/6-tips-fix-gmail-slow-load-issues/</feedburner:origLink></item>
		<item>
		<title>Quick Tip: Quickly Scroll to the Top of Page on iPhone</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/dSEaZb10znc/</link>
		<comments>http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 06:10:31 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[top]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=471</guid>
		<description><![CDATA[Quickly Scroll to the Top of Page on iPhone... Very quick tip today - you may already know this one.<p><a href="http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/">Quick Tip: Quickly Scroll to the Top of Page on iPhone</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Very quick and easy tip today &#8211; you may already know this one&#8230;</p>
<p>If you are browsing a web page in mobile Safari on your iPhone, you can fast scroll to the top of the page simply by tapping the clock in the &#8220;titlebar&#8221; at the top edge of your screen.</p>
<p>This is very handy, especially when reading an extremely long web page. It sure beats sweeping your finger repeatedly.</p>
<p>That&#8217;s all there is to it! Tap the clock! I told you it was quick and easy.</p>
<p>Do you have any iPhone tips, tricks, or suggestions? Please leave a comment below. Thanks for reading the site.</p>
<p><a href="http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/">Quick Tip: Quickly Scroll to the Top of Page on iPhone</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone+http://bit.ly/2G9HnN" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;title=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;title=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;t=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;t=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;title=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/&amp;title=Quick+Tip%3A+Quickly+Scroll+to+the+Top+of+Page+on+iPhone" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Quick Tip: Quickly Scroll to the Top of Page on iPhone" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/E2m2AaAXjikf_UxgdIQH0N6G8yI/0/da"><img src="http://feedads.g.doubleclick.net/~a/E2m2AaAXjikf_UxgdIQH0N6G8yI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/E2m2AaAXjikf_UxgdIQH0N6G8yI/1/da"><img src="http://feedads.g.doubleclick.net/~a/E2m2AaAXjikf_UxgdIQH0N6G8yI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/quick-tip-quickly-scroll-top-page-iphone/</feedburner:origLink></item>
		<item>
		<title>Quick Tip: Lock the Screen and Passcode Protect Your iPhone</title>
		<link>http://feedproxy.google.com/~r/KevinWorthington/~3/2gp760VJtzE/</link>
		<comments>http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 02:05:29 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[lock screen]]></category>
		<category><![CDATA[passcode]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[save battery]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=462</guid>
		<description><![CDATA[Want to save some battery life on your iPhone AND increase your security? Well, this 2-for-1 tip should do the trick.<p><a href="http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/">Quick Tip: Lock the Screen and Passcode Protect Your iPhone</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Want to save some battery life on your iPhone AND increase your security? Well, this 2-for-1 tip should do the trick. Ready? Here it is:</p>
<p>From your iPhone&#8217;s home screen, tap &#8220;Settings.&#8221; You will see this screen:</p>
<div id="attachment_463" class="wp-caption aligncenter" style="width: 200px">
	<a href="http://kwimg.com/wp-content/uploads/2009/08/iPhone-settings.png"><img src="http://kwimg.com/wp-content/uploads/2009/08/iPhone-settings-200x300.png" alt="iPhone Settings" title="Figure 1: iPhone Settings" width="200" height="300" class="size-medium wp-image-463" /></a>
	<p class="wp-caption-text">Figure 1: iPhone Settings</p>
</div>
<p>Next, tap &#8220;General,&#8221; and you will see:</p>
<div id="attachment_464" class="wp-caption aligncenter" style="width: 200px">
	<a href="http://kwimg.com/wp-content/uploads/2009/08/iPhone-general-settings.png"><img src="http://kwimg.com/wp-content/uploads/2009/08/iPhone-general-settings-200x300.png" alt="iPhone General Settings" title="Figure 2: General iPhone Settings" width="200" height="300" class="size-medium wp-image-464" /></a>
	<p class="wp-caption-text">Figure 2: General iPhone Settings</p>
</div>
<p>You may change or set &#8220;Auto-Lock.&#8221; I have mine set to 2 minutes. With this setting, my screen will lock after 2 minutes and save some battery life for me.</p>
<p>To set a password (or passcode) to unlock the screen, tap &#8220;Passcode Lock&#8221;:</p>
<div id="attachment_465" class="wp-caption aligncenter" style="width: 200px">
	<a href="http://kwimg.com/wp-content/uploads/2009/08/iPhone-enter-passcode.png"><img src="http://kwimg.com/wp-content/uploads/2009/08/iPhone-enter-passcode-200x300.png" alt="iPhone Enter Passcode" title="Figure 3: Set your passcode" width="200" height="300" class="size-medium wp-image-465" /></a>
	<p class="wp-caption-text">Figure 3: Set your passcode</p>
</div>
<p>It will ask twice, to make double-sure that the code you choose was entered correctly. You will then see the following screen, which outline options for changing the passcode or disabling it at another time:</p>
<div id="attachment_466" class="wp-caption aligncenter" style="width: 200px">
	<a href="http://kwimg.com/wp-content/uploads/2009/08/iPhone-passcode-lock.png"><img src="http://kwimg.com/wp-content/uploads/2009/08/iPhone-passcode-lock-200x300.png" alt="iPhone Passcode Options" title="Figure 4: Passcode options" width="200" height="300" class="size-medium wp-image-466" /></a>
	<p class="wp-caption-text">Figure 4: Passcode options</p>
</div>
<p>For now you can leave these settings alone, or change them if you wish. It&#8217;s your iPhone, I&#8217;m not the boss of you.</p>
<p>Do you have an iPhone tip or trick that you&#8217;d like to share? Please leave a comment below. Thanks for stopping by the site.</p>
<p><a href="http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/">Quick Tip: Lock the Screen and Passcode Protect Your iPhone</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone+http://bit.ly/1r3JK6" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;title=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;title=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;t=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;t=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;title=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/&amp;title=Quick+Tip%3A+Lock+the+Screen+and+Passcode+Protect+Your+iPhone" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Quick Tip: Lock the Screen and Passcode Protect Your iPhone" /></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/IZoLVaYbwjKYAOZeNRrhSCWxclM/0/da"><img src="http://feedads.g.doubleclick.net/~a/IZoLVaYbwjKYAOZeNRrhSCWxclM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IZoLVaYbwjKYAOZeNRrhSCWxclM/1/da"><img src="http://feedads.g.doubleclick.net/~a/IZoLVaYbwjKYAOZeNRrhSCWxclM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevinworthington.com/quick-tip-lock-screen-passcode-protect-iphone/</feedburner:origLink></item>
	</channel>
</rss>
