<?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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Think Press</title>
	
	<link>http://www.think-press.com</link>
	<description>WordPress Enlightenment</description>
	<lastBuildDate>Fri, 25 Jun 2010 20:32:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/think-press" /><feedburner:info uri="think-press" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>33.739571</geo:lat><geo:long>-117.786183</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><item>
		<title>OC WordPress Security/Maintenance Talk.</title>
		<link>http://feedproxy.google.com/~r/think-press/~3/Kw2B-amgWIE/</link>
		<comments>http://www.think-press.com/510/oc-wordpress-securitymaintenance-talk/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:09:57 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.think-press.com/?p=510</guid>
		<description><![CDATA[We gave a presentation on maintaining and securing your WordPress installation at this month&#8217;s OC WordPress meetup. These are our notes from our presentation. Maintenance Regular database backups &#38; optimizations Download and install WP-DBManager (http://wordpress.org/extend/plugins/wp-dbmanager/) Move /wp-content/plugins/wp-dbmanager/htaccess.txt to /wp-content/backup-db/.htaccess  (be sure to change file name) Navigate to Database -&#62; DB Options, scroll to the Automatic [...]]]></description>
			<content:encoded><![CDATA[<p>We gave a presentation on maintaining and securing your WordPress installation at this month&#8217;s OC WordPress meetup. These are our notes from our presentation.<span id="more-510"></span></p>
<h3>Maintenance</h3>
<p><strong>Regular database backups &amp; optimizations</strong></p>
<ol>
<li>Download and install WP-DBManager (http://wordpress.org/extend/plugins/wp-dbmanager/)</li>
<li>Move /wp-content/plugins/wp-dbmanager/htaccess.txt to /wp-content/backup-db/.htaccess  (be sure to change file name)</li>
<li>Navigate to Database -&gt; DB Options, scroll to the Automatic Scheduling section at the bottom of the page</li>
<li>Configure frequency and email address for database backups (select Gzip &#8220;Yes&#8221; option)</li>
<li>Configure frequency of database optimization</li>
<li>Click &#8220;Save Changes&#8221;</li>
</ol>
<p><strong>How to backup your site before upgrading</strong></p>
<ol>
<li> Download your wp-content directory (usually via FTP)</li>
<li>Export your database to a local file using WP-DBManager</li>
</ol>
<p><strong>Upgrading to 3.0</strong></p>
<ol>
<li>Download &amp; unzip the latest stable release of WordPress (http://wordpress.org/download/)</li>
<li>Make a backup (refer to previous step</li>
<li>Install/Activate &amp; enable the Maintenance Mode plugin (http://wordpress.org/extend/plugins/maintenance-mode/)</li>
<li>Delete the wp-admin &amp; wp-includes folders</li>
<li>Upload everything EXCEPT the wp-content folder to your website</li>
<li>Upload the new TwentyTen theme to wp-content/themes/</li>
<li>When all files are done uploading, visit your WordPress admin (http://example.com/wp-admin/)</li>
<li>Click on the &#8220;Upgrade WordPress Database&#8221; button, then the subsequent &#8220;Continue&#8221; button.</li>
</ol>
<h3>Security</h3>
<p><strong>.htaccess stuff</strong></p>
<ul>
<li>Don&#8217;t allow directory indexes put <code>Options All -Indexes</code> in your .htaccess file</li>
</ul>
<p><strong>Using .htaccess to protect wp-admin &#8211; wp-admin level .htaccess</strong></p>
<p>Method 1 &#8211; IP Blocking: put the following in the .htaccess file in your wp-admin folder</p>
<p><code><br />
order deny,allow<br />
allow from 0.0.0.0 # This is your static IP (must be static IP, if dynamic, you may have to change this often)<br />
allow from 12.345.678.90 (for multiple users or IPs)<br />
deny from all<br />
</code><br />
<em>note: find your ip by going to http://whatismyip.com</em></p>
<p>Method 2 &#8211; Password Protection</p>
<p>Step 1: Create your .htpasswd file  (set FTP to &#8220;show invisible files&#8221;) (http://www.htaccesstools.com/htpasswd-generator/)<br />
Step 2: Upload your .htpasswd files to your FTP<br />
Step 3: Open your .htaccess file or create a new one if it doesn&#8217;t exist in /wp-admin and paste in the following:<br />
<code><br />
&lt;Files ~ "\.(php)$"&gt;<br />
AuthUserFile /path/to/.htpasswd # must be absolute path from root (check your host for this info)<br />
AuthType Basic<br />
AuthName "restricted"<br />
Order Deny,Allow<br />
Deny from all<br />
Require valid-user<br />
Satisfy any<br />
&lt;/Files&gt;<br />
</code></p>
<p><strong>No search engines for WP folders:</strong></p>
<p>In robots.txt: <code>Disallow: /wp-*</code> (create a robots.txt at the root level if one does not exist)</p>
<p><strong>Protect against brute force attacks:</strong> (http://wordpress.org/extend/plugins/login-lockdown/)</p>
<p><strong>Change username from &#8220;admin&#8221;</strong></p>
<ol>
<li>Option 1 &#8211; Fresh 3.0 install: set username during install process</li>
<li>Option 2 &#8211; Database Query: update tableprefix_users set user_login=&#8217;newuser&#8217; where user_login=&#8217;admin&#8217;; (usually via phpMyAdmin)</li>
</ol>
<p>Tip: Only use editor and below user roles for publishing</p>
<p><strong>Change your table prefix from default &#8220;wp_&#8221;</strong></p>
<ol>
<li>Option 1 &#8211; Fresh install: change the table prefix during the install process</li>
<li>Option 2 &#8211; Current install: change table prefix variable in the config file and update the database table names (usually via phpMyAdmin; requires that database user have ALTER permissions)</li>
</ol>
<p>Tip: Correct file permissions (Security Scan Plugin)</p>
<p><strong>Protect against Spam Comments/Email Obfuscation</strong></p>
<ol>
<li>Akismet</li>
<li>Cookies for Comments (plugin)</li>
<li>SpamShiv! (plugin)</li>
</ol>
<p>Tip: Don&#8217;t host with GoDaddy or Network Solutions =)</p>
<h3  class="related_post_title">Possibly Related Information</h3><ul class="related_post"><li>No Related Information</li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/think-press?a=Kw2B-amgWIE:nLXgnqRiKT8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/think-press?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=Kw2B-amgWIE:nLXgnqRiKT8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/think-press?i=Kw2B-amgWIE:nLXgnqRiKT8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=Kw2B-amgWIE:nLXgnqRiKT8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/think-press?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/think-press/~4/Kw2B-amgWIE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.think-press.com/510/oc-wordpress-securitymaintenance-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.think-press.com/510/oc-wordpress-securitymaintenance-talk/</feedburner:origLink></item>
		<item>
		<title>(PLUGIN) Conversation Manager</title>
		<link>http://feedproxy.google.com/~r/think-press/~3/Fj91hIs9E3E/</link>
		<comments>http://www.think-press.com/491/conversation-manager/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 21:45:36 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Plugin Contest Winner]]></category>
		<category><![CDATA[WordCamp NYC]]></category>

		<guid isPermaLink="false">http://www.think-press.com/?p=491</guid>
		<description><![CDATA[It has been said that the majority of readers don&#8217;t comment on blog posts because they don&#8217;t feel like they have anything specific to add to a conversation. This plugin allows you to prompt your readers to comment by asking them to answer a question specific to that post. A simple box with text that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-496" style="margin-left: 10px; margin-bottom: 10px; border: 1px solid #666;" title="Plugin-Icon" src="http://www.think-press.com/admin/wp-content/uploads/Plugin-Icon.jpg" alt="Plugin-Icon" width="150" height="150" />It has been said that the majority of readers don&#8217;t comment on blog posts because they don&#8217;t feel like they have anything specific to add to a conversation.</p>
<p>This plugin allows you to prompt your readers to comment by asking them to answer a question specific to that post. A simple box with text that you define when writing your post is added above the comment form. The box can be styled to match your site by adjusting some predefined options.<span id="more-491"></span></p>
<p>Here are some screenshots of the plugin&#8217;s interface:</p>
<p> </p>
<p><div id="attachment_500" class="wp-caption alignnone" style="width: 361px"><img class="size-full wp-image-500 " title="Conversation Meta Box" src="http://www.think-press.com/admin/wp-content/uploads/Conversation-Meta-Box.png" alt="Meta box to set up the question on the post edit screen" width="351" height="185" /><p class="wp-caption-text">Meta box to set up the question on the post edit screen</p></div>
<p> </p>
<p> </p>
<p><div id="attachment_501" class="wp-caption alignnone" style="width: 485px"><img class="size-full wp-image-501   " title="Conversation Options Screen" src="http://www.think-press.com/admin/wp-content/uploads/Conversation-Options-Screen.png" alt="Settings for the visual display of the box on the front end" width="475" height="270" /><p class="wp-caption-text">Settings for the visual display of the box on the front end</p></div>
<p> </p>
<p>On our recent trip to <a title="WordCamp NYC 2009" href="http://2009.newyork.wordcamp.org" target="_blank">WordCamp NYC</a>, we entered a plugin development contest. Out of all the entries we won! This plugin was built as a group effort with some other developers. I am very happy to announce that the plugin has been posted to <a title="Ignite Your Comment Conversations" href="http://wordpress.org/extend/plugins/conversation-starter/" target="_blank">the official WordPress plugin directory</a>.</p>
<p>So, as part of the contest, one of the requirements was to work within a team environment. This was definitely a change for us. While Jeff and I used to working with each other, we rarely lean on others for any kind of insight. For this contest, we reached out to two others: a long-time WordPress user (<a title="Visit Andrew's Blog" href="http://www.pharmcountry.net/">Andrew C.</a>) and a trusted WordPress developer (<a title="Visit John Hawkins' Blog" href="http://www.johnhawkinsunrated.com">John Hawkins</a>).</p>
<p>At first I saw this as a way to fulfill requirements of the competition, but looking back on it now, having those additional resources at hand is more powerful than I originally imagined. John, Andrew<a title="Visit Andrew's Blog" href="http://www.pharmcountry.net/" target="_blank"></a>, and eventually <a title="Visit Blair's Blog" href="http://www.blairwilliams.com" target="_blank">Blair</a> and <a title="Visit Drew's Consulting site" href="http://www.jestro.com" target="_blank">Drew</a>, offered a lot of additional insight into not only the how the code was written and user experience, but ideas for future releases of this plugin. With all of our previous releases, we put 99% of the features we had planned into the initial release. This meant that future releases were done primarily to update things that had broken with WordPress core updates.</p>
<p>I definitely see the value to both our work and the community, in developing plugins with a greater motive (and I think that was the intention of this competition at WordCamp NYC&#8230;point well taken). John and I spoke about the idea of canonical plugins several times at WordCamp NYC, and he even presented about it in his ignite session. The basic idea, that seems like a really good one, is that one plugin would cover the foundation of basic functionality, but could be extended by other plugins to allow for more customized functionality. Currently in the WordPress plugin directory, there are a lot of plugins with duplicated functionality. Imagine if all of those individual developers came together and wrote a super plugin that covered 90% of the core features of all of those plugins and could be extended by other smaller, more precise plugins for individual use. I think this would be a huge step forward from how things are currently being developed.</p>
<p>The last thing I took from this competition came from being judged by Mark, Matt and Brian. I think I got through Brian and Matt so quickly because we used a lot of the built-in WordPress features, looks and script libraries. Mark, being security minded (that&#8217;s a good thing), had another thing in mind. As he showed off the plugin, he began exploiting it using a lot of fairly common tactics. To be totally honest, we hadn&#8217;t spent a lot of time on security when we built this because it was a late entry into the contest. Security is an often overlooked, but crucial part of any plugin. What&#8217;s the point in having a super secure software like WordPress, when you run 75 plugins that can easily be exploited to give hackers instant access to your admin? Plugin developers, take a moment ot look over the plugins you have made. Do you escape results from the database? Do you use nonces? If not, you really should. Mark has a great article about the <a title="Escaping in WP2.8" href="http://markjaquith.wordpress.com/2009/06/12/escaping-api-updates-for-wordpress-2-8/" target="_blank">new escaping functions</a> and another one about <a title="Nonces in WordPress" href="http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/" target="_blank">using nonces properly</a>.</p>
<p><strong>Future:</strong> I will be adding a screencast for this plugin shortly, so stay tuned for that.</p>
<h3  class="related_post_title">Possibly Related Information</h3><ul class="related_post"><li><a href="http://www.think-press.com/400/speed-up-wordpress-by-deactivating-unused-plugins/" title="Speed Up WordPress by Deactivating Unused Plugins">Speed Up WordPress by Deactivating Unused Plugins</a></li><li><a href="http://www.think-press.com/357/skype-headset-giveaway/" title="Skype Headset Giveaway ">Skype Headset Giveaway </a></li><li><a href="http://www.think-press.com/226/favicon-generator/" title="(PLUGIN) Favicon Generator">(PLUGIN) Favicon Generator</a></li><li><a href="http://www.think-press.com/169/plugin-spamshiv-lite/" title="(Plugin) SpamShiv Lite">(Plugin) SpamShiv Lite</a></li><li><a href="http://www.think-press.com/37/spamshiv/" title="(PLUGIN) Spam Protection by SpamShiv">(PLUGIN) Spam Protection by SpamShiv</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/think-press?a=Fj91hIs9E3E:A5JO0Rw-an0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/think-press?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=Fj91hIs9E3E:A5JO0Rw-an0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/think-press?i=Fj91hIs9E3E:A5JO0Rw-an0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=Fj91hIs9E3E:A5JO0Rw-an0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/think-press?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/think-press/~4/Fj91hIs9E3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.think-press.com/491/conversation-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.think-press.com/491/conversation-manager/</feedburner:origLink></item>
		<item>
		<title>Secure WordPress with 2.8.6</title>
		<link>http://feedproxy.google.com/~r/think-press/~3/ktleCwdF6vQ/</link>
		<comments>http://www.think-press.com/484/secure-wordpress-with-2-8-6/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 20:21:51 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[General Information]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.think-press.com/?p=484</guid>
		<description><![CDATA[WordPress 2.8.6 was released today. It includes some security fixes for vulnerabilities found by WordPress users. As always you can get the newest version of WordPress from the WordPress.org download page. We recommend always upgrading WordPress to the latest stable version available. If you don&#8217;t have the time or don&#8217;t know how, you can always [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-485 alignright" title="upgrade-wordpress" src="http://www.think-press.com/admin/wp-content/uploads/upgrade-wordpress.jpg" alt="upgrade-wordpress" width="150" height="150" />WordPress 2.8.6 was released today. It includes some security fixes for vulnerabilities found by WordPress users.</p>
<p>As always you can get the newest version of WordPress from the <a title="Download WordPress 2.8.6" href="http://wordpress.org/download/" target="_blank">WordPress.org download page</a>. We recommend always upgrading WordPress to the latest stable version available. If you don&#8217;t have the time or don&#8217;t know how, you can always hire us to make the upgrade for you. Just fill out the form on our &#8220;<a title="We Can Install WordPress For You." href="../../need-help/" target="_self">need help?</a>&#8221; page and we&#8217;ll be in touch.</p>
<blockquote><p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.</p>
<p>The first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski, is an issue with sanitizing uploaded file names that can be exploited in certain Apache configurations. Thanks to Benjamin and Dawid for finding and reporting these.</p></blockquote>
<h3  class="related_post_title">Possibly Related Information</h3><ul class="related_post"><li>No Related Information</li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/think-press?a=ktleCwdF6vQ:rxzith751rI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/think-press?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=ktleCwdF6vQ:rxzith751rI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/think-press?i=ktleCwdF6vQ:rxzith751rI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=ktleCwdF6vQ:rxzith751rI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/think-press?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/think-press/~4/ktleCwdF6vQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.think-press.com/484/secure-wordpress-with-2-8-6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.think-press.com/484/secure-wordpress-with-2-8-6/</feedburner:origLink></item>
		<item>
		<title>Sency – Real Time Search</title>
		<link>http://feedproxy.google.com/~r/think-press/~3/8aec0aA54ZU/</link>
		<comments>http://www.think-press.com/474/sency/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 08:18:48 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Sency]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[WordPress Widget]]></category>

		<guid isPermaLink="false">http://www.think-press.com/?p=474</guid>
		<description><![CDATA[Sency is a real-time search engine. While the service is still in its infancy, I think it has the potential to become a big player in the search industry. My initial reactions to the service were of the &#8220;so what&#8221; nature, but after talking through the goal of the service with the founder, Evan Britton, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Sency - Real Time Search" href="http://www.sency.com" target="_blank"></a><a href="http://sency.com"><img class="alignnone size-full wp-image-478" title="Sency - Real Time Search" src="http://www.think-press.com/admin/wp-content/uploads/screenshot-12.jpg" alt="Sency - Real Time Search" width="376" height="140" /></a></p>
<p><a title="Sency - Real Time Search" href="http://www.sency.com" target="_blank">Sency</a> is a real-time search engine. While the service is still in its infancy, I think it has the potential to become a big player in the search industry. My initial reactions to the service were of the &#8220;so what&#8221; nature, but after talking through the goal of the service with the founder, Evan Britton, I&#8217;ve changed my tune a little bit. This service differs from Google in that it&#8217;s not really a web search engine. It&#8217;s more of a conversation search engine. The interface mimics a &#8220;dressed up Google&#8221;, but the functionality couldn&#8217;t be more different.</p>
<p>Sency searches the web (predominately Twitter at this point) for conversations related to your keyword search. Not only does it filter out a lot of the junk that comes through Twitter, it actually separates the most popular links for that search term throughout the day so you can see what&#8217;s most popular at any given time.</p>
<p>Pretty cool, eh?</p>
<p>Well, we think it&#8217;s going to catch on, so we built a plugin that lets you put Sency search results in your WordPress sidebar.</p>
<p><span style="text-decoration: line-through;">Download <a href="http://www.think-press.com/downloads/sency.zip" title="Downloaded 63 times">Sency (137.86 kB)</a></span> <strong>Update:</strong> This plugin is now hosted at the <a title="Sency - Real Time Search at the WordPress Plugin Repository" href="http://wordpress.org/extend/plugins/sency-real-time-search-feed/" target="_blank">WordPress.org Plugin Directory</a><span style="text-decoration: line-through;"><br />
</span></p>
<h3  class="related_post_title">Possibly Related Information</h3><ul class="related_post"><li><a href="http://www.think-press.com/235/forthcoming-update-to-the-favicon-generator-wordpress-plugin/" title="Forthcoming update to the Favicon Generator WordPress Plugin">Forthcoming update to the Favicon Generator WordPress Plugin</a></li><li><a href="http://www.think-press.com/178/rss-icon-widget/" title="(Widget) RSS Icon Widget">(Widget) RSS Icon Widget</a></li><li><a href="http://www.think-press.com/25/xbox-live-gamer-card/" title="(Widget) XBOX Live Gamer Card">(Widget) XBOX Live Gamer Card</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/think-press?a=8aec0aA54ZU:jtcctczyPHc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/think-press?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=8aec0aA54ZU:jtcctczyPHc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/think-press?i=8aec0aA54ZU:jtcctczyPHc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=8aec0aA54ZU:jtcctczyPHc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/think-press?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/think-press/~4/8aec0aA54ZU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.think-press.com/474/sency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.think-press.com/474/sency/</feedburner:origLink></item>
		<item>
		<title>Bleary-Eyed Blogworld Expo Experience</title>
		<link>http://feedproxy.google.com/~r/think-press/~3/HhpmibrW-mM/</link>
		<comments>http://www.think-press.com/455/bleary-eyed-blogworld-expo-experience/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 08:33:21 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[General Information]]></category>
		<category><![CDATA[WordCamp Planning]]></category>
		<category><![CDATA[Blogworld Expo]]></category>
		<category><![CDATA[Blue Man Group]]></category>
		<category><![CDATA[Orange County WordCamp]]></category>
		<category><![CDATA[WordCamp Las Vegas]]></category>

		<guid isPermaLink="false">http://www.think-press.com/?p=455</guid>
		<description><![CDATA[Over the weekend I had the opportunity to attend Blogworld Expo as well as WordCamp Las Vegas. Blogworld was pretty huge, but WordCamp Las Vegas was a much smaller conference within the main conference. I had the chance to talk with some really great WordPress users and developers. I really got a good sense of [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I had the opportunity to attend Blogworld Expo as well as WordCamp Las Vegas. Blogworld was pretty huge, but WordCamp Las Vegas was a much smaller conference within the main conference. I had the chance to talk with some really great WordPress users and developers. I really got a good sense of what&#8217;s going on in the WordPress world. Unfortunately, Automattic decided to call a last minute pow-wow in Ottowa (if I remember correctly), so there was no official representation from the main developer of WordPress. I valued the opportunity to meet both <a title="Visit Matt Mullenweg's Blog" href="http://ma.tt" target="_blank">Matt</a> and <a title="Visit Beau Lebens' Blog" href="http://dentedreality.com.au/" target="_blank">Beau</a> at previous WordCamps, so it was a little disappointing not having an Automattician there.</p>
<p><img class="alignnone size-full wp-image-459" title="Blogworld Expo and New Media Expo Banner" src="http://www.think-press.com/admin/wp-content/uploads/IMG_1620.jpg" alt="Blogworld Expo and New Media Expo Banner" width="500" height="333" /></p>
<h2>8 Meaningful Takeaways</h2>
<ol>
<li>Accessibility counts for something. Glenda Watson Hyatt laid out some ground rules for making your website POUR (Perceivable Operable Understandable Robust). I&#8217;m not going to give it all away, but you can download the ebook from her site: <a title="Download Glenda's Presentation Free" href="http://blogaccessibility.com/" target="_blank">http://blogaccessibility.com/</a></li>
<li>John P says that using URL shortening services like bit.ly, su.pr and TinyUrl is a detriment to your search engine reach. Instead of putting links to your website out in the wild to build some authority, you send out these other services&#8217; links and boost up their popularity in the search engines. Pretty Link Pro by Blair Williams will likely replace two or three of your existing WordPress plugins and solve this exact problem for you. It will allow you to create short links for twitter and other sharing right on your own domain. This will help you keep all the Google juice that you deserve. I could probably have gotten Blair to give me a copy of the plugin after palling around all weekend, but as soon as I got home, I turned on my computer and bought the sucker. Check out the feature video for details: <a title="Go Buy Pretty Link Pro NOW" href="http://prettylinkpro.com/" target="_blank">http://prettylinkpro.com/</a></li>
<li>Go meet people in person at conferences. It&#8217;s nice to have a billion friends/followers online, but I bet having just five of those billion friends be actual real-life friends is more motivating, profitable and fun. Just make sure there&#8217;s no overlap, otherwise you&#8217;ll never have anything to talk about&#8230;hehe. Oh, and one more thing. Go to conferences alone. It will force you to interact with people that you wouldn&#8217;t otherwise approach.</li>
<li>Go where the people are. Chris Pirillo is an Internet giant, yet he comes to where the people hang out online instead of forcing them to come to him. This means that getting your content syndicated in as many places as possible is super important.</li>
<li>Care. Don&#8217;t care so much about the money you&#8217;re hoping to make, just care about why you&#8217;re doing it. If you put your heart into it, the money will come.</li>
<li>It&#8217;s not good enough to just install the All-In-One SEO Pack plugin. You have to use it. When you&#8217;re posting to your website, scroll all the way down and fill in the meta box. You&#8217;ll be pleasantly surprised with your results.</li>
<li>Never say no to a free show ticket. That&#8217;s kind of obvious, I know.</li>
<li>Take your laptop with you.</li>
</ol>
<p>If you want the short version, stop reading here. Otherwise, block out a good twenty minutes and read the rest of my ramblings about the weekend.</p>
<p><span id="more-455"></span></p>
<h2>Day 1 (Friday)</h2>
<p>I woke up at 3am in Orange County so that I could get some client work finished before heading to Vegas. I backed out of my driveway at 5:32 am and by 9:15 I had arrived in Vegas and checked into my hotel room. I walked around the back only to see a sliding glass door on the first floor with a shattered window (I later read about poor <a title="Eduardo's Stolen Laptop Story" href="http://merille.com/blogworld-09-a-tale-of-burglary-brogan-and-human-business-part-one" target="_blank">Eduardo&#8217;s story</a>).</p>
<p>I popped in to the convention and watched a bit of the opening keynote before coming back to the exhibit floor. I wandered the booths for a little while before WordCamp Las Vegas started and talked with some of the exhibitors, but nothing really jumped out at me. I met up with <a title="Check out Jestro's Themes" href="http://themes.jestro.com" target="_blank">Drew and Jen of Jestro</a> and took a seat at the packed house that was WordCamp Las Vegas&#8230;or, not.</p>
<p><img class="alignnone size-full wp-image-460" title="The empty area where WordCamp Las Vegas was to be held" src="http://www.think-press.com/admin/wp-content/uploads/IMG_1623.jpg" alt="The empty area where WordCamp Las Vegas was to be held" width="500" height="333" /></p>
<p>Because of the way the venue was laid out, WordCamp didn&#8217;t get a lot of foot traffic and as a result it sorely lacked in the attendee department. However, what it lacked in attendees, it made up for with amazing networking opportunities. During the first day, here&#8217;s a rundown of all of the awesome people I mingled with:</p>
<ol>
<li><strong>The Dudes from Headway Themes</strong> (<a title="Read up on Headway Themes" href="http://headwaythemes.com" target="_blank">http://headwaythemes.com</a>) &#8211; I didn&#8217;t catch their names, but I won one of their themes from <a title="Visit WP Coder" href="http://wpcoder.com" target="_blank">WPCoder.com</a> last month. If you use the code hwBWE09 before Oct. 24th you can get 20% off Headway, an amazingly configurable WordPress theme.</li>
<li><strong>John Hawkins</strong> (<a title="Visit John Hawkins' Blog" href="http://johnhawkinsunrated.com" target="_blank">http://johnhawkinsunrated.com</a>) &#8211; John is the long time organizer of WordCamp Las Vegas and WordPress plugin developer. John is not only a great developer, but an amazing personality. I&#8217;ve met him on a couple of occasions and was always impressed with his willingness to offer guidance and support.</li>
<li><strong>Scott Porad</strong> (<a title="I Can Has LOLCats" href="http://icanhascheezburger.com" target="_blank">http://icanhascheezburger.com</a>) &#8211; CTO of the Cheezburger network. I Can Has Cheezburger is kind of a staple at WordCamps. I&#8217;ve seen Bun Huh and Scott Pora (twice) present about their business model and I still can&#8217;t believe how simple it is. &amp;quot;Make people laugh for 5 minutes a day&amp;quot;. That&#8217;s it. The first time I saw Scott present was at WordCamp San Francisco back in May. I think the presentation was lost on me due to the sheer number of people that were at that conference. In Las Vegas, we literally sat down in a semi-circle and introduced ourselves to him. It was a very intimate setting and I got a lot out of it.</li>
<li><strong>Angelo Mandato</strong> (<a title="Listen to the Plugins Podcast" href="http://pluginspodcast.com" target="_blank">http://pluginspodcast.com</a>) &#8211; Lead developer of the Blubrry Podcasting plugin and host of The WordPress Plugins Podcast. Angelo&#8217;s presentation covered how to set up WordPress with Blubrry to make a Podcast. I had a brief opportunity to talk with him before the presentation about the plugin podcast and potentially speaking at our WordCamp.</li>
<li><strong>John Pozadzidas</strong> (<a title="Real-Time Stats for the Real-Time Web" href="http://woopra.com" target="_blank">http://woopra.com</a>) &#8211; CEO of Woopra, statistics for the real-time web. I love John&#8217;s personality. He&#8217;s funny and brutally honest. He started off his presentation &#8220;Win or Die&#8221; by reminding us all that he is our competition. It&#8217;s true and we all have to remember that while being social is fine and dandy, the business of becoming an authority on the web is a fierce battle. John&#8217;s presentation was my favorite of day one.</li>
<li><strong>Blair Williams</strong> (<a title="Visit Blair's Blog" href="http://blairwilliams.com" target="_blank">http://blairwilliams.com</a>) &#8211; creator of the outstanding Pretty Link Pro WordPress plugin (http://www.prettylinkpro.com). Blair was sitting next to me during John P&#8217;s talk. The only reason I even met him was because John P mentioned Pretty Link Pro in his presentation. If I didn&#8217;t meet blair, I probably would have had a boring and uneventful weekend (more on that in a bit).</li>
<li><strong>Darin Hardy</strong> (<a title="WordCamp Los Angeles Sponsor, Hosting Provider in Los Angeles" href="http://inmotionhosting.com" target="_blank">http://inmotionhosting.com</a>) &#8211; Marketing Manager for InMotion hosting, sponsor of WordCamp Los Angeles (and hopefully for <a title="Attend Orange County WordCamp" href="http://ocwordcamp.com" target="_blank">WordCamp Orange County</a>). I recognized Darin from a previous WordCamp that I had been to. I knew that InMotion had sponsored WordCamp Los Angeles, so when we talked it was all business. I&#8217;m hoping ot bring them on as a sponsor for Orange County WordCamp.</li>
<li><strong>Cali Lewis</strong> (<a title="Daily Videos on All Kinds of Geekery" href="http://geekbrief.tv" target="_blank">http://geekbrief.tv</a>) &#8211; Host of Geek Brief TV. Cali is a big personality in the geek universe. I saw her present in San Francisco, and I was hoping to talk her in to speaking at OC WordCamp about video. I dropped the seed, let&#8217;s see if it grows into a better opportunity.</li>
<li><strong>Austin Passy</strong> (<a title="Visit Austin's Blog" href="http://austinpassy.com" target="_blank">http://austinpassy.com</a>) &#8211; organizer of WordCamp LA, WordPress designer/developer. I originall met Austin at WordCamp LA. He&#8217;s been another great resource for us in our own planning of OC WordCamp, and he&#8217;s a hellofa nice guy too.</li>
</ol>
<p>As I said before, my weekend probably would have been pretty lazy (due to my lack of sleep) if it wasn&#8217;t for Blair. Blair scored some tickets to the <a title="Buy Tickets for the Blue Man Group" href="http://www.blueman.com/tickets/las_vegas" target="_blank"><strong>Blue Man Group</strong></a> at the Venetian and asked Drew, Jen and I if we wanted to join him. He asked if I knew anyone else who wanted to go, so I called up my buddy Jason Van Orden (<a title="Visit Jason's Blog" href="http://www.jasonvanorden.com" target="_blank">http://www.jasonvanorden.com</a>) and the four of us tagged along to the show. I met up with Blair, Austin, Ben and Scott at The Jet nightclub (which I basically had to weasel my way into) for the official Blogworld after party. Blair and I took off to see the Blue Man Group with a few new friends, Ronjini and some other random guy from the club. The show was awesome. I&#8217;ve never seen it before so it was all new to me, but I gotta say that it kept me entertained (and awake) all the way until the end of the show at midnight even though I was running on three hours of sleep. I highly recommend the show to anyone who&#8217;s planning a trip to Vegas. <strong>Updated: Jason sent me a sneaky cam video of me playing the pipe&#8217;s in the gift shop. Won&#8217;t you ave a little fun at my expense. =)</strong></p>
<p><a href="http://www.think-press.com/455/bleary-eyed-blogworld-expo-experience/"><em>Click here to view the embedded video.</em></a></p>
<h2>Day 2 (Saturday)</h2>
<p>Phew. Day one was exhausting. I had planned on starting out the day having breakfast with Jason and some of his friends, but I got up too early and ended up with 30 minutes to kill before breakfast at Paradise Cafe in the Las Vegas Hilton. I sat down at a slot machine and proceeded to lose $100. Not a good start to the day. At least Jay paid for breakfast (thanks Jay)! I met some cool people at breakfast, including Emile Bourquin (CTO of Ideas For Download &#8211; <a title="A Bourquin Venture" href="http://ideasfordownload.com" target="_blank">http://ideasfordownload.com</a>), Chris Christensen (Host of the Amateur Traveler podcast &#8211; <a title="Amateur Traveler Podcast" href="http://amateurtraveler.com" target="_blank">http://amateurtraveler.com</a>), David Jacobs (<a title="Viist Connected World Media" href="http://connectedworldmedia.com" target="_blank">http://connectedworldmedia.com</a>), and Karin Hoegh (Podcasting consultant from Denmark &#8211; <a title="Karin's Podcast Consulting" href="http://podconsult.dk" target="_blank">http://podconsult.dk</a>). This informal setting turned out to be a great little mini-session on social media and membership sites.</p>
<p>After breakfast I made my way back to the conference where I stood guard at the WordPress Genius booth. There I met Dana and Karen, from Content Robot (<a title="They Fix WordPress Websites" href="http://contentrobot.com" target="_blank">http://contentrobot.com</a>). When my shift was over, I made my way to the WordCamp session already in progress. On the way I ran into Aaron Kronis, Rockstar SEO Consultant from WPromote. He showed off a really interesting SEO tool that WPromote is releasing in the coming weeks. I&#8217;m hoping we can get Aaron to speak on an SEO panel at OC WordCamp.</p>
<p>I think the most valuable information came from Glenda Watson Hyatt (<a title="Glenda's Blog on Web Accessibility" href="http://doitmyselfblog.com" target="_blank">http://doitmyselfblog.com</a>). She gave a talk on website accessibility. I think a lot of people take web accessibility for granted, but according to Glenda, 18% of the U.S. population is living with a disability. That&#8217;s 18% of a market just in the U.S. that is being neglected. That&#8217;s a lot of money (for those of you who are trying to monetize your websites) to leave on the table.</p>
<p>Blair and I took a walk to get some free ice cream in the exhibit hall when we ran into Tracy and Stu from WPWishlist (<a title="Wishlist Membership Plugin" href="http://member.wishlistproducts.com/" target="_blank">http://member.wishlistproducts.com/</a>). For those of you who don&#8217;t know, WPWishlist makes a membership plugin for WordPress. We&#8217;ve just finished building a membership site using it, and it&#8217;s fantastic. I&#8217;ll be writing an article on it here soon. I talked to them about some pretty exciting business opportunities (more on that another time).</p>
<p>After that, I knew the conference couldn&#8217;t get any better, so I decided to jump in the car and head back to Orange County. I was feeling so lucky because of all the chance meetings I had that day that I stopped in at Prim to test my luck. I sat down at a slot machine and within 20 minutes, I had won my $100 back from the morning. On the way to cash it in, I stopped at another machine that caught my eye. I sat down once more and within another 15 minutes I was walking away with another $200. I was very happy with my winnings, so I got in the car and drove home, a perfect end to the already fantastic weekend.</p>
<h3  class="related_post_title">Possibly Related Information</h3><ul class="related_post"><li>No Related Information</li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/think-press?a=HhpmibrW-mM:2LJyuJlLbFo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/think-press?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=HhpmibrW-mM:2LJyuJlLbFo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/think-press?i=HhpmibrW-mM:2LJyuJlLbFo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/think-press?a=HhpmibrW-mM:2LJyuJlLbFo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/think-press?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/think-press/~4/HhpmibrW-mM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.think-press.com/455/bleary-eyed-blogworld-expo-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.think-press.com/455/bleary-eyed-blogworld-expo-experience/</feedburner:origLink></item>
	</channel>
</rss>
