<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WPCOOP.org &#187; Articles</title>
	<atom:link href="http://wpcoop.org/category/articles/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpcoop.org</link>
	<description>Global Association of Wordpress Professionals</description>
	<lastBuildDate>Sun, 28 Feb 2010 20:56:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>From Sandbox to Fully Themed in 30 Minutes</title>
		<link>http://wpcoop.org/from-sandbox-to-fully-themed-in-30-minutes/</link>
		<comments>http://wpcoop.org/from-sandbox-to-fully-themed-in-30-minutes/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 20:50:16 +0000</pubDate>
		<dc:creator>Nick Armstrong</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Child Themes]]></category>
		<category><![CDATA[Thematic]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://wpcoop.org/?p=379</guid>
		<description><![CDATA[From Sandbox to Fully Themed in 30 Minutes]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpcoop.org/from-sandbox-to-fully-themed-in-30-minutes/" title="Permanent link to From Sandbox to Fully Themed in 30 Minutes"><img class="post_image alignright remove_bottom_margin" src="http://wpcoop.org/blog/wp-content/uploads/screenshot.png" width="300" height="225" alt="Thematic Screenshot" /></a>
</p><p>I love <a title="Thematic" href="http://themeshaper.com/thematic/" target="_blank">Thematic</a>. I use it and child themes almost exclusively in my web design.</p>
<p>With the most recent update, Thematic has done away with almost all hand-coding of multiple PHP files and replaced it with hand-coding of the Functions.php file.</p>
<p>I&#8217;ve <a title="Nick's eBook" href="http://drop.io/hidden/mineenj9kxhmtm/asset/YXJtc3Ryb25nLWVkaXRpbmd0aGVtZXMtcGRm" target="_blank">written a free eBook</a> on how edit your own Themes&#8230; it&#8217;s not comprehensive and probably will bore most technical users; but if you&#8217;re a WordPress newb, feel free to take a look! (Don&#8217;t worry, I&#8217;m not selling anything &#8211; I put this together for my friends who want to learn WordPress web design!)</p>
]]></content:encoded>
			<wfw:commentRss>http://wpcoop.org/from-sandbox-to-fully-themed-in-30-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress TinyMCE Hack Will Kill Your Blog</title>
		<link>http://wpcoop.org/wordpress-tinymce-hack-will-kill-your-blog/</link>
		<comments>http://wpcoop.org/wordpress-tinymce-hack-will-kill-your-blog/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 18:23:54 +0000</pubDate>
		<dc:creator>Nick Armstrong</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tips and Techniques]]></category>
		<category><![CDATA[prevent wordpress hacks]]></category>
		<category><![CDATA[TinyMCE]]></category>
		<category><![CDATA[WordPress security]]></category>

		<guid isPermaLink="false">http://wpcoop.org/?p=732</guid>
		<description><![CDATA[
Update: The specific versions of WordPress affected have been 2.9.2, 2.9.1, 2.9, and some version of 2.8 which I wasn&#8217;t specific on checking.
Last week, I noticed my blogs were acting up &#8211; they&#8217;d hang when trying to upload an image, post a blog&#8230; random things.  I fired up Firebug and noticed I had several requests [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpcoop.org/wordpress-tinymce-hack-will-kill-your-blog/" title="Permanent link to WordPress TinyMCE Hack Will Kill Your Blog"><img class="post_image alignright" src="http://wpcoop.org/blog/wp-content/uploads/servercrash.jpg" width="500" height="375" alt="Crash!" /></a>
</p><p><em>Update</em>: The specific versions of WordPress affected have been 2.9.2, 2.9.1, 2.9, and some version of 2.8 which I wasn&#8217;t specific on checking.</p>
<p>Last week, I noticed my blogs were acting up &#8211; they&#8217;d hang when trying to upload an image, post a blog&#8230; random things.  I fired up Firebug and noticed I had several requests going to a jumbled mess of letters and a domain associated with spam.</p>
<p>I opened up my header.php file in the Theme Editor and a massive block of injected PHP was there to greet me. Balls. As it turns out, this is a massive exploit in the WordPress text editor that causes admin pages to re-direct to spyware sites. So far, every one of my sites and my clients&#8217; sites have been hit &#8211; sometimes you can&#8217;t even log in.</p>
<p>Basic instructions to fix an affected site:</p>
<ul>
<li>Download your wp-content folder and your wp-config.php file via FTP</li>
<li>Replace all of your wordpress files with a clean version (replace any of a different size)</li>
<li>Then for each .PHP file in your wp-content folder and also the wp-config file, look for a big block of encrypted text at the top&#8230; delete that block  &#8211; it will be in every theme file, every config file, etc.</li>
<li>Upload the newly cleaned files (replacing any of a different size)</li>
<li>To prevent this type of attack, add everything between the &#8211;&#8217;s (NOT including the &#8211;&#8217;s) to your .htaccess file in the wordpress main directory (after any # END statements and a blank line.</li>
</ul>
<p>&#8211;<br />
# BEGIN Stop Bots</p>
<p>RewriteEngine On<br />
RewriteCond %{THE_REQUEST} .*['"`!$&lt;&gt;;].* [OR]<br />
RewriteCond %{THE_REQUEST} .*%22.* [NC,OR]<br />
RewriteCond %{THE_REQUEST} .*%27.* [NC,OR]<br />
RewriteCond %{THE_REQUEST} .*%60.* [NC,OR]<br />
RewriteCond %{THE_REQUEST} .*%3C.* [NC,OR]<br />
RewriteCond %{THE_REQUEST} .*%3E.* [NC,OR]<br />
RewriteCond %{THE_REQUEST} .*%3B.*<br />
RewriteRule $ &#8211; [l,F]</p>
<p>SetEnvIf Request_URI &#8220;&#8216;&#8221; bad_bot=1<br />
SetEnvIf Request_URI &#8216;&#8221;&#8216; bad_bot=1<br />
SetEnvIf Request_URI &#8216;`&#8217; bad_bot=1<br />
SetEnvIf Request_URI &#8216;%22&#8242; bad_bot=1<br />
SetEnvIf Request_URI &#8216;%27&#8242; bad_bot=1<br />
SetEnvIf Request_URI &#8216;%60&#8242; bad_bot=1</p>
<p>&lt;Limit HEAD GET POST&gt;<br />
Order Allow,Deny<br />
Allow from all<br />
Deny from env=bad_bot<br />
&lt;/Limit&gt;</p>
<p># END Stop Bots<br />
&#8211;</p>
<p>If your blog has been affected by this and you have no clue how to fix it, feel free to <a title="I Am Nick Armstrong" href="http://www.iamnickarmstrong.com/" target="_blank">contact me</a> and I&#8217;ll help walk you through it.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpcoop.org/wordpress-tinymce-hack-will-kill-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 is here &#8211; Sweet Image Tools Included</title>
		<link>http://wpcoop.org/wordpress-2-9-is-here-sweet-image-tools/</link>
		<comments>http://wpcoop.org/wordpress-2-9-is-here-sweet-image-tools/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 07:29:51 +0000</pubDate>
		<dc:creator>Nick Armstrong</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tips and Techniques]]></category>
		<category><![CDATA[Image Editing]]></category>
		<category><![CDATA[Multimedia Tools]]></category>
		<category><![CDATA[WordPress 2.9]]></category>

		<guid isPermaLink="false">http://wpcoop.org/?p=723</guid>
		<description><![CDATA[I just installed WordPress 2.9 and among the list of features are some new sweet image editing capabilities.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpcoop.org/wordpress-2-9-is-here-sweet-image-tools/" title="Permanent link to WordPress 2.9 is here &#8211; Sweet Image Tools Included"><img class="post_image alignleft remove_bottom_margin" src="http://wpcoop.org/blog/wp-content/uploads/wordpress-image-tools.png" width="619" height="492" alt="Fancy new picture!" /></a>
</p><p>I just installed WordPress 2.9 and among the list of features are some new sweet image editing capabilities.</p>
<p>Having played around with a few images already, I&#8217;m really pleased with how easy it is to flip images, crop images, rotate&#8230; anything.</p>
<p>Among other additions, you can also now add a URL to a video file on its own line, and WordPress will automatically add the correct code for you.</p>
<p><a title="WordPress 2.9" href="http://wordpress.org/development/2009/12/wordpress-2-9/" target="_blank">According to Matt</a>, they&#8217;re going to be adding many more multimedia tools into WordPress.  I can&#8217;t wait to see what&#8217;s next!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpcoop.org/wordpress-2-9-is-here-sweet-image-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Phoenix &#8211; The WPCOOP Will Be There</title>
		<link>http://wpcoop.org/wordcamp-phoenix/</link>
		<comments>http://wpcoop.org/wordcamp-phoenix/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 04:41:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://wpcoop.org/?p=598</guid>
		<description><![CDATA[
The WordPress Cooperative is going to the Arizona desert!
Well OK, maybe not the entire WPCOOP membership will be there, but one of  members will be.  Not only will he be attending WordCamp Phoenix 2009,  Jayson has been invited to be one of  the few select speakers sharing his passion for WordPress along with the likes [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpcoop.org/wordcamp-phoenix/" title="Permanent link to WordCamp Phoenix &#8211; The WPCOOP Will Be There"><img class="post_image aligncenter" src="http://wpcoop.org/blog/wp-content/uploads/wordcamp-phx.png" width="400" height="95" alt="Post image for WordCamp Phoenix &#8211; The WPCOOP Will Be There" /></a>
</p><h3>The WordPress Cooperative is going to the Arizona desert!</h3>
<p>Well OK, maybe not the entire WPCOOP membership will be there, but one of  members will be.  Not only will he be attending WordCamp Phoenix 2009,  Jayson has been invited to be one of  the few select speakers sharing his passion for WordPress along with the likes of <a title="Matt Mullenweg" href="http://ma.tt/" target="_blank">Matt Mullenweg</a>, <a title="Merlin Mann" href="http://www.merlinmann.com/" target="_blank">Merlin Mann</a>, <a title="John Hawkins" href="http://johnhawkinsunrated.com/speaking" target="_blank">John Hawkins</a>, <a title="Brent Spore" href="http://iboughtamac.com/" target="_blank">Brent Spore</a>, <a title="Lorelle On WordPress" href="http://lorelle.wordpress.com/">Lorrelle VanFossen</a> and Dave Moyer from the <a title="Wordcast podcast" href="http://bitwiremedia.com/wordcast/" target="_blank">WordCast Podcast</a>.</p>
<p>We are excited to hear our WPCOOP founder&#8217;s dynamic performance as it will be broadcast live by GoDaddy productions.  Although we are not entirely sure what revelations Jayson will share, but the buzz is something to do with the power of WordPress for you and your business and how current trends like crowdsourcing, social media and community will continue to influence how where and why we do business on the web.</p>
<p>It should be a good show.  Be sure to tune in to <a href="http://phxwordcamp.com/">http://PHXWORDCAMP.COM</a> this Friday.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpcoop.org/wordcamp-phoenix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
