<?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>info.michael-simons.eu &#187; Wordpress</title>
	<atom:link href="http://info.michael-simons.eu/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://info.michael-simons.eu</link>
	<description>Just another nerd blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:26:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Patching wp-cache for more security</title>
		<link>http://info.michael-simons.eu/2008/04/04/patching-wp-cache-for-more-security/</link>
		<comments>http://info.michael-simons.eu/2008/04/04/patching-wp-cache-for-more-security/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 13:14:22 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[English posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/?p=159</guid>
		<description><![CDATA[I use wp-cache on all my blogs all the time. No need waiting for being slashdotted or heised. But wp-cache comes with a security flaw. It requires the webserver to have write access on $WP_HOME/wp-content/cache and $WP_HOME/wp-content. The first part is perfectly reasonable, the second not. wp-cache creates it&#8217;s wp-cache-config.php in that place and edits [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://mnm.uib.es/gallir/wp-cache-2/">wp-cache</a> on all my blogs all the time. No need waiting for being slashdotted or heised.</p>
<p>But wp-cache comes with a security flaw. It requires the webserver to have write access on <code>$WP_HOME/wp-content/cache</code> and <code>$WP_HOME/wp-content</code>. The first part is perfectly reasonable, the second not.</p>
<p>wp-cache creates it&#8217;s <code>wp-cache-config.php</code> in that place and edits this file consequently while being configured.</p>
<p>wp-cache comes with a sample config you can put in place. After that,  chmod this file to 660 or something else that allows your webserver to edit it. Please don&#8217;t give your webserver write access to <code>$WP_HOME/wp-content</code>, especially not facing the current attacks on wordpress bloggers as described <a href="http://www.tamagothi.de/2008/03/25/wp-angriffe-an-alle-betroffenen/">here</a>.</p>
<p>I assume you know what your doing in the next step. All recommendations are tested and working with wp-cache 2.1.2. Open the file file <code>wp-cache.php</code> in your favorite editor, navigate to line 471 in function <code>wp_cache_verify_config_file</code> and change the following code</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">is_writable</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;b&gt;Error:&lt;/b&gt; wp-content directory (&lt;b&gt;<span style="color: #006699; font-weight: bold;">$dir</span>&lt;/b&gt;) is not writable by the Web server.&lt;br /&gt;Check its permissions.&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
if ( !is_writable($dir)) {
    echo &quot;&lt;b&gt;Error:&lt;/b&gt; wp-content directory (&lt;b&gt;$dir&lt;/b&gt;) is not writable by the Web server.&lt;br /&gt;Check its permissions.&quot;;
    return false;
}
*/</span></pre></div></div>

<p>Alternatively, you can use the file i prepared: <a href="/wp-content/uploads/2008/04/wp-cache.php.txt">wp-cache.php</a>. Rename it from *.php.txt to *.php and replace the old file with it.</p>
<p>Read more about the attack on wp blogs <a href="http://spam.weltretter.de/2008/04/02/zweite-runde-der-wp-angriffe/">here</a>. It&#8217;s shown that the attackers create a subfolder in your wp-contents. So it&#8217;s essential to chmod this folder to 0755 or even better to 0555 if you&#8217;re paranoid and only change it if you upload updates.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=159&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_159" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2008/04/04/patching-wp-cache-for-more-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 and http error codes</title>
		<link>http://info.michael-simons.eu/2008/03/30/wordpress-25-and-http-error-codes/</link>
		<comments>http://info.michael-simons.eu/2008/03/30/wordpress-25-and-http-error-codes/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 18:32:26 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[English posts]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/?p=157</guid>
		<description><![CDATA[Am i the only one who&#8217;s annoyed that WordPress 2.5 sends a http 500 code if a commentor doesn&#8217;t fill in all required fields? Any Internet Explorer 6 or 7 user won&#8217;t see any error message but a &#8220;this page cannot be displayed!&#8221; page. Stupid decision. Otherwise, the update went smooth as far as i [...]]]></description>
			<content:encoded><![CDATA[<p>Am i the only one who&#8217;s annoyed that WordPress 2.5 sends a http 500 code if a commentor doesn&#8217;t fill in all required fields? Any Internet Explorer 6 or 7 user won&#8217;t see any error message but a &#8220;this page cannot be displayed!&#8221; page. Stupid decision.</p>
<p>Otherwise, the update went smooth as far as i can tell.</p>
<p><ins datetime="2008-03-30T18:41:35+00:00">Edit:</ins> Oh dear&#8230; To me it seems that IE6 shows a browser default page everytime and IE7 sometimes displays the WP error page and sometimes not. If anyone can confirm this?</p>
<p><ins datetime="2008-03-30T18:46:58+00:00">Edit 2:</ins> It&#8217;s silly. The Internet Explorer masks all 500 pages if their content is below a threshold of 512bytes with &#8220;User friendly messages&#8221;. User friendly your mom. The user can turn this off as described <a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B294807&#038;x=9&#038;y=13">here</a> but i don&#8217;t think that all IE users will do this just for the WP bloggers.</p>
<p>Summarizing it: It&#8217;s a plain stupid idea to use the http error 500 code for errors generated by user input as some users just cannot read them as the messages are not displayed to them.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=157&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_157" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2008/03/30/wordpress-25-and-http-error-codes/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>A muzzle for WordPress 2.3 and the Akismet Plugin</title>
		<link>http://info.michael-simons.eu/2007/09/26/a-muzzle-for-wordpress-23-and-the-akismet-plugin/</link>
		<comments>http://info.michael-simons.eu/2007/09/26/a-muzzle-for-wordpress-23-and-the-akismet-plugin/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 14:26:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/09/26/a-muzzle-for-wordpress-23-and-the-akismet-plugin/</guid>
		<description><![CDATA[As reported here and elsewhere, Dexter is somewhat talkative. I recommend the following 2 steps program: Stop sending your url If you already have used WordPress 2.3, use the 123 Anonymer Versionscheck 0.10. It will anonymize your data, but a minimum of 1 request with personal data will happen, that is while using the plugin [...]]]></description>
			<content:encoded><![CDATA[<p>As reported <a href="http://info.michael-simons.eu/2007/09/26/wordpress-uptodate-checker/">here</a> and <a href="http://the-gay-bar.com/index.php/2007/09/26/wordpress-23-privacy-and-security-issue/">elsewhere</a>, Dexter is somewhat talkative.</p>
<p>I recommend the following 2 steps program:</p>
<h2>Stop sending your url</h2>
<p>If you already have used WordPress 2.3, use the <a href="http://schnurpsel.de/wordpress-23-anonym-up-to-date-bleiben-plugin-61/">123 Anonymer Versionscheck 0.10</a>. It will anonymize your data, but a minimum of 1 request with personal data will happen, that is while using the plugin page.</p>
<p>If you do a fresh install of WordPress 2.3, i&#8217;d go with the <a href="http://schnurpsel.de/wordpress-23-anonym-up-to-date-bleiben-59/">my-hacks.php solution</a>, because that way, no personal info will be send.</p>
<h2>Lots of unnecessary Akismet informations</h2>
<p>After finding the update problem this morning at <a href="http://www.tamagothi.de/">Lumières dans la nuit</a>, i read the following <a href="http://groups.google.co.uk/group/wp-hackers/browse_thread/thread/bdced7524fa79a18/0df185d76390777c?#0df185d76390777c">group</a>. To my surprise i&#8217;ve learned, that the Akismet Spamchecker sends all of the $_SERVER environment variables from your server to the Akismet server. W T F?? I myself use Akismet <a href="http://dailyfratze.de">in a custom project</a>, there is absolutely no need to send this information. To stop sending this information, open akismet.php in your favorite editor, search and remove the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_SERVER</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$value</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">in_array</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$key</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ignore</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #000088;">$comment</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$key</span>&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$value</span><span style="color: #339933;">;</span></pre></div></div>

<p class="akst_link"><a href="http://info.michael-simons.eu/?p=121&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_121" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/09/26/a-muzzle-for-wordpress-23-and-the-akismet-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress uptodate checker</title>
		<link>http://info.michael-simons.eu/2007/09/26/wordpress-uptodate-checker/</link>
		<comments>http://info.michael-simons.eu/2007/09/26/wordpress-uptodate-checker/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 07:53:11 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/09/26/wordpress-uptodate-checker/</guid>
		<description><![CDATA[Yesterday i&#8217;ve installed WordPress 2.3 without too much problems. The new uptodate check for plugins is nice, out of question, but already yesterday i thought: hm, everybody is whining about Microsoft products phoning home, nobody gives a shit about wordpress doing the same. The Nighwatchman has an in depth analysis about the data transferred to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://info.michael-simons.eu/2007/09/25/upgrading-to-wordpress-23-dexter/">Yesterday</a> i&#8217;ve installed WordPress 2.3 without too much problems. The new uptodate check for plugins is nice, out of question, but already yesterday i thought: hm, everybody is whining about Microsoft products phoning home, nobody gives a shit about wordpress doing the same.</p>
<p>The <a href="http://www.tamagothi.de">Nighwatchman</a> has an in depth analysis about the data transferred to api.wordpress.org, read it here: <a href="http://www.tamagothi.de/2007/09/23/datenschutzproblem-in-wordpress-23/">Datenschutzproblem in WordPress 2.3 (Privacyproblem in WordPress 2.3)</a>. </p>
<p>I will use the following <a href="http://schnurpsel.de/wordpress-23-anonym-up-to-date-bleiben-59/">hack</a> to omit my URL. Alternatively, uptodate checking can be completely disabled with this <a href="http://wordpress.org/extend/plugins/disable-wordpress-plugin-updates/">plugin</a>.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=120&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_120" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/09/26/wordpress-uptodate-checker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrading to WordPress 2.3 &#8220;Dexter&#8221;</title>
		<link>http://info.michael-simons.eu/2007/09/25/upgrading-to-wordpress-23-dexter/</link>
		<comments>http://info.michael-simons.eu/2007/09/25/upgrading-to-wordpress-23-dexter/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 10:40:41 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Ultimate Tag Warrior]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/09/25/upgrading-to-wordpress-23-dexter/</guid>
		<description><![CDATA[In the first place, i wanted to wait to here some more news about the latest release of WordPress, called &#8220;Dexter&#8221; (I don&#8217;t think about some saxophonist, but about Dexter Morgan). But, as you know, curiosity killed the cat, i couldn&#8217;t wait and with the announcement yesterday, i created a patch file (they forgot the [...]]]></description>
			<content:encoded><![CDATA[<p>In the first place, i wanted to wait to here some more news about the latest release of WordPress, called &#8220;Dexter&#8221; (I don&#8217;t think about some saxophonist, but about <a href="http://en.wikipedia.org/wiki/Dexter_(TV_series)">Dexter Morgan</a>). But, as you know, curiosity killed the cat, i couldn&#8217;t wait and with the <a href="http://wordpress.org/development/2007/09/wordpress-23/">announcement yesterday</a>, i created a patch file (they forgot the link at wordpress.org) and patched my blog.</p>
<p>As danger is my second name, i didn&#8217;t backup or anything especially for upgrading (ok, honestly i have a nightly cron&#8217;ed backup) and run the patch with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #660033;">-p2</span>  diff-from-tags_2.2.3-r6166-to-tags_2.3-r6166.diff.txt</pre></div></div>

<p>from my install dir and boom, i had 2.3 (get the patch file at the <a href="http://trac.wordpress.org/changeset?format=diff&#038;new=6166&#038;old=6166&#038;new_path=tags%2F2.3&#038;old_path=tags%2F2.2.3">wordpress trac (for upgrading 2.2.3 to 2.3)</a>).</p>
<p>Things, that didn&#8217;t work but didn&#8217;t break the blog either were: Ultimate Tag Warrior. It&#8217;s still there and still working. Things that didn&#8217;t work were my theme and the <a href="http://www.sonsofskadi.net/extended-live-archive/">Extended Live Archives</a> by Sons Of Skadi. </p>
<p>For testing purpose, i completely disabled wp-cache.</p>
<p>Luckily, someone had already patched ELA, you can download a modified version <a href="http://blog.tinyau.net/archives/2007/07/07/extended-live-archives-for-wordpress-23/">here</a>, see it in action <a href="/archive/">here</a>. Be aware, you also need the original release from above. Before this thingy works, you need to clean it&#8217;s cache. Otherwise you&#8217;ll get some weird error messages.</p>
<p>Things i need to fix in my theme were UTW related. I imported my tags into the new taxonomic scheme and finally, dumped the warrior. The import worked well, but it killed the blanks in tags and replaced them with underscores. Thanks for that :/</p>
<p>I did the following replacement in my theme:</p>
<table>
<colgroup>
<col width="20%" />
<col width="40%" />
<col width="40%" /></colgroup>
<tr>
<th>Purpose</th>
<th>UTW</th>
<th>WP</th>
</tr>
<tr>
<td>Show the current selected tag in archive view</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">UTW_ShowCurrentTagSet</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">single_tag_title<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</td>
</tr>
<tr>
<td>Show the tags for the current post</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">UTW_ShowTagsForCurrentPost<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;commalist&quot;</span><span style="color: #009900;">&#41;</span></pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">the_tags<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span><span style="color: #0000ff;">', '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</td>
</tr>
<tr>
<td>Create a tag cloud</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">UTW_ShowWeightedTagSet<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;sizedtagcloud&quot;</span><span style="color: #009900;">&#41;</span></pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">wp_tag_cloud<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'smallest=70&amp;largest=130&amp;unit=%&amp;orderby=count&amp;order=DESC'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</td>
</tr>
</table>
<p>The arguments to the functions corresponds with my former UTW settings. Speaking of which: WordPress 2.3 tagging system is completely naked. There are no settings and what is worse, there is no such thing as a dropdown thingy while writing, just a plain text field. As a first solution, i&#8217;ve tried the <a href="http://www.poplarware.com/tagplugin.html">Advanced Tag Entry WordPress Plugin</a>. Seems to work fine, but not as comfortable like UTW.</p>
<p>All other plugins i use, seem to work fine:</p>
<table>
<tr>
<td>Advanced Tag Entry</td>
<td>1.02</td>
</tr>
<tr>
<td>Akismet</td>
<td>2.0.2</td>
</tr>
<tr>
<td>Chunk Urls for WordPress</td>
<td>2.0</td>
</tr>
<tr>
<td>Extended Live Archives</td>
<td>0.10beta-r18 (patched version)</td>
</tr>
<tr>
<td>FeedStats</td>
<td>3.0</td>
</tr>
<tr>
<td>Google Adsense widget</td>
<td>1.0</td>
</tr>
<tr>
<td>Google XML Sitemaps</td>
<td>3.0</td>
</tr>
<tr>
<td>Math Comment Spam Protection</td>
<td>2.1</td>
</tr>
<tr>
<td>Related Posts</td>
<td>2.04</td>
</tr>
<tr>
<td>Share This</td>
<td>1.4</td>
</tr>
<tr>
<td>Simple Trackback Validation</td>
<td>2.1</td>
</tr>
<tr>
<td>Subscribe To Comments</td>
<td>2.1.1</td>
</tr>
<tr>
<td>Tag cloud widget</td>
<td>1.0a (modified by myself)</td>
</tr>
<tr>
<td>Time Zone</td>
<td>2.2</td>
</tr>
<tr>
<td>wp-cache</td>
<td>2.1.2</td>
</tr>
<tr>
<td>WP-Syntax</td>
<td>0.6</td>
</table>
<p>In the meantime, i have the impression that 2.3 is somewhat slower than 2.2.3, but i can be wrong. </p>
<p>I&#8217;m in doubt about upgrading my other blog <a href="http://planet-punk.de">planet-punk.de</a>. I like and do use tags a lot, but for the time being, the <a href="http://boren.nu/archives/2007/08/26/wordpress-23-taxonomy-schema/">greatest db scheme</a> doesn&#8217;t help a somewhat unusable ui. Don&#8217;t get me wrong, i really like the changes in the scheme going on, but for now, i see little benefit.</p>
<p>Another nice post with the same title as mine has some suggestions for people who ran into problems: read it at <a href="http://weblogtoolscollection.com/archives/2007/09/25/upgrading-to-wordpress-23-dexter/">the Weblog Tools Collection</a>.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=119&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_119" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/09/25/upgrading-to-wordpress-23-dexter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Comment notification</title>
		<link>http://info.michael-simons.eu/2007/08/18/comment-notification/</link>
		<comments>http://info.michael-simons.eu/2007/08/18/comment-notification/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 14:36:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/08/18/comment-notification/</guid>
		<description><![CDATA[I use Subscribe to Comments on all my wordpress blogs, even before Tante had askes so nicely for it&#8230; The plugin broke with WP 2.2, if you try to change you subscriptions, you ended up with the following message: &#8220;You may not access this page without a valid key.&#8221;. So please all your WordPress users [...]]]></description>
			<content:encoded><![CDATA[<p>I use <em>Subscribe to Comments</em> on all my wordpress blogs, even before <a href="http://the-gay-bar.com/index.php/2007/08/15/make-commenting-easier-pretty-please/">Tante</a> had askes so nicely for it&#8230;</p>
<p>The plugin broke with WP 2.2, if you try to change you subscriptions, you ended up with the following message: &#8220;You may not access this page without a valid key.&#8221;.</p>
<p>So please all your WordPress users who updated to 2.2 (you really should do this!), get the latest version of <a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe to Comments here</a> for satisfied readers and subscribers <img src='http://info.michael-simons.eu/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=115&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_115" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/08/18/comment-notification/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.2.1 Update / Security Fix</title>
		<link>http://info.michael-simons.eu/2007/06/21/wordpress-221-update-security-fix/</link>
		<comments>http://info.michael-simons.eu/2007/06/21/wordpress-221-update-security-fix/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 21:13:19 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/06/21/wordpress-221-update-security-fix/</guid>
		<description><![CDATA[Some user don&#8217;t see the need to upgrade (&#8220;it&#8217;s just the third number, no new features&#8221; blah blah). The developer blog mentions some severe security issues here so i recommend upgrading as soon as possible. Share This]]></description>
			<content:encoded><![CDATA[<p>Some user don&#8217;t see the need to upgrade (&#8220;it&#8217;s just the third number, no new features&#8221; blah blah).</p>
<p>The developer blog mentions some severe security issues <a href="http://wordpress.org/development/2007/06/wordpress-221/">here</a> so i recommend upgrading as soon as possible.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=96&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_96" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/06/21/wordpress-221-update-security-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog by mail broken in WordPress 2.2</title>
		<link>http://info.michael-simons.eu/2007/05/28/blog-by-mail-broken-in-wordpress-22/</link>
		<comments>http://info.michael-simons.eu/2007/05/28/blog-by-mail-broken-in-wordpress-22/#comments</comments>
		<pubDate>Mon, 28 May 2007 10:11:04 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/05/28/blog-by-mail-broken-in-wordpress-22/</guid>
		<description><![CDATA[Don&#8217;t bother using &#8220;blog by mail&#8221; in WordPress 2.2, it&#8217;s broken: Ticket #4337 (new defect) And there went another sunny nice rainy morning&#8230; Share This]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t bother using &#8220;blog by mail&#8221; in WordPress 2.2, it&#8217;s broken:</p>
<p><a href="http://trac.wordpress.org/ticket/4337">Ticket #4337 (new defect)</a></p>
<p>And there went another <del>sunny</del> <del>nice</del> rainy morning&#8230;</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=88&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_88" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/05/28/blog-by-mail-broken-in-wordpress-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and UTW Upgrade</title>
		<link>http://info.michael-simons.eu/2007/04/03/wordpress-and-utw-upgrade/</link>
		<comments>http://info.michael-simons.eu/2007/04/03/wordpress-and-utw-upgrade/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 18:24:41 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ultimate Tag Warrior]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/04/03/wordpress-and-utw-upgrade/</guid>
		<description><![CDATA[Why on earth has my &#8216;post_type&#8217; column on my wp 2.0.x based blog no default value? Ultimate Tag Warrior UTW3-14159265 will break and show no tags. If anyone else has this problem, add $typelimitsql = &#34;(post_status = 'publish' OR post_status = 'static')&#34;; // From previous version of utw in ultimate-tag-warrior-core.php right before the class definition. [...]]]></description>
			<content:encoded><![CDATA[<p>Why on earth has my &#8216;post_type&#8217; column on my wp 2.0.x based blog no default value? Ultimate Tag Warrior UTW3-14159265 will break and show no tags.</p>
<p>If anyone else has this problem, add</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$typelimitsql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;(post_status = 'publish' OR post_status = 'static')&quot;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// From previous version of utw</span></pre></div></div>

<p>in ultimate-tag-warrior-core.php right before the class definition. It&#8217;s taken from the previous UTW Version. </p>
<p>Edit:<br />
Upgrading to WP 2.1.x changed the table structure&#8230; A little hint would have been nice in the utw changelog.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=63&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_63" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/04/03/wordpress-and-utw-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.375 seconds -->

