<?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</title>
	<atom:link href="http://wpcoop.org/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>Chris Jordan</title>
		<link>http://wpcoop.org/chris-jordan/</link>
		<comments>http://wpcoop.org/chris-jordan/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 06:02:09 +0000</pubDate>
		<dc:creator>thechrisjordan</dc:creator>
				<category><![CDATA[Designers]]></category>

		<guid isPermaLink="false">http://wpcoop.org/?p=622</guid>
		<description><![CDATA[Hi, I&#8217;m Chris, a Wordpress designer based in Atlanta, GA.  I accidentally got started using Wordpress while building my unique online Insurance Agency: Atlanta Insurance Live!
My freelance design business can be found at theChrisJordan, my personal website.  I&#8217;ll soon upload a diverse project portfolio there as well.  I live and die by the Thesis theme [...]]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_710" class="wp-caption alignleft" style="width: 110px">
	<img class="size-full wp-image-710" src="http://wpcoop.org/blog/wp-content/uploads/DSCN1114.JPG" alt="Chris Jordan" width="110" height="146" />
	<p class="wp-caption-text">Chris Jordan</p>
</div>
<p>Hi, I&#8217;m Chris, a Wordpress designer based in Atlanta, GA.  I <em>accidentally </em>got started using Wordpress while building my unique online Insurance Agency: <a title="Atlanta Insurance Live!" href="http://www.atlantainsurancelive.com" target="_blank">Atlanta Insurance Live!</a></p>
<p>My freelance design business can be found at <a title="Work with Chris" href="http://thechrisjordan.com/work-with-me/" target="_blank">theChrisJordan</a>, my personal website.  I&#8217;ll soon upload a diverse project portfolio there as well.  I live and die by the Thesis theme from <a title="Pearsonified" href="http://www.pearsonified.com/" target="_blank">Chris Pearson</a>.  I&#8217;m not sure why everyone isn&#8217;t using it&#8230; anyway, back to my story; I&#8217;ll soon have an actual company website launched to pose as the hub of my freelance business.</p>
<p>My skill set is primarily in CSS and I enjoys solving the puzzles that web design projects tend to present.  I&#8217;m also proficient in XHTML but prefer to work with CMS&#8217; because of the ease of use the end product presents to the client.  I&#8217;m currently learning PHP and have <strong><em>MONSTER</em></strong> plans for 2010!  These plans involve design projects and a start up that may very well change the face of the insurance industry&#8230; on Wordpress, of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpcoop.org/chris-jordan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
