<?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>Peter Glaeser &#187; WordPress</title>
	<atom:link href="http://www.peterglaeser.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.peterglaeser.com</link>
	<description>opinions on online marketing, mobile advertising and technology</description>
	<lastBuildDate>Tue, 27 Sep 2011 07:00:07 +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>WordPress 2.7</title>
		<link>http://www.peterglaeser.com/wordpress-27/</link>
		<comments>http://www.peterglaeser.com/wordpress-27/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 08:10:01 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.peterglaeser.com/?p=221</guid>
		<description><![CDATA[Hi guys and girls, WordPress version 2.7 has been released. It&#8217;s running smoothly on all of my blogs. The admin interface is new and I like it. I think people will get used to it quickly. I recommend everyone to &#8230; <a href="http://www.peterglaeser.com/wordpress-27/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi guys and girls, WordPress version 2.7 has been released. It&#8217;s running smoothly on all of my blogs. The admin interface is new and I like it. I think people will get used to it quickly. I recommend everyone to update.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6.3</title>
		<link>http://www.peterglaeser.com/wordpress-263/</link>
		<comments>http://www.peterglaeser.com/wordpress-263/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 17:27:32 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.peterglaeser.com/?p=194</guid>
		<description><![CDATA[There is a new version out there fixing some security issues in two files. Please update your blogs and have a good weekend.]]></description>
			<content:encoded><![CDATA[<p>There is a new version out there fixing some security issues in two files. Please update your blogs and have a good weekend.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/wordpress-263/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5.1</title>
		<link>http://www.peterglaeser.com/wordpress-251/</link>
		<comments>http://www.peterglaeser.com/wordpress-251/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 20:35:56 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.affiliatetracking.de/?p=73</guid>
		<description><![CDATA[Don&#8217;t leave for the weekend before upgrading your WordPress blogs to version 2.5.1. The security update has just come out.]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t leave for the weekend before upgrading your WordPress blogs to version 2.5.1. The security update has just come out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/wordpress-251/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Multiple WordPress Installations</title>
		<link>http://www.peterglaeser.com/updating-multiple-wordpress-installations/</link>
		<comments>http://www.peterglaeser.com/updating-multiple-wordpress-installations/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 21:49:05 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.affiliatetracking.de/updating-multiple-wordpress-installations/</guid>
		<description><![CDATA[Many affiliates run multiple WordPress blogs on the same server. It&#8217;s necessary to update your installations regularly as WordPress is an extremely vulnerable piece of software. Manual updating costs too much time, so here&#8217;s some Linux shell code for you. &#8230; <a href="http://www.peterglaeser.com/updating-multiple-wordpress-installations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many affiliates run multiple WordPress blogs on the same server. It&#8217;s necessary to update your installations regularly as WordPress is an extremely vulnerable piece of software. Manual updating costs too much time, so here&#8217;s some Linux shell code for you. My script assumes that the document root of all WordPress installations on that server is at /srv/www/htdocs/DOMAINNAME/wordpress.</p>
<p>1. We download the WordPress source code:<br />
<code>unlink source_en.zip<br />
wget http://wordpress.org/latest.zip<br />
mv latest.zip source_en.zip</code></p>
<p>2. We run backups of the old system, extract the new version and restore the old sitemap.<br />
<code>for domain in example.com anotherexample.com lastexample.com<br />
do<br />
rm -r /srv/www/htdocs/$domain/wordpress_old<br />
cp -r /srv/www/htdocs/$domain/wordpress /srv/www/htdocs/$domain/wordpress_old<br />
unzip source_en.zip -d /srv/www/htdocs/$domain<br />
cp /srv/www/htdocs/$domain/wordpress_old/sitemap.xml /srv/www/htdocs/$domain/wordpress<br />
done</code></p>
<p>You also want to keep your plugins updated. You will need to collect the sources from various sites on the internet and put the extracted versions in a &#8220;plugins&#8221; folder on your server. With the following script you can deploy the contents of your plugins folder (which you keep up to date manually) to all of your WordPress installations:<br />
<code>for domain in example.com anotherexample.com lastexample.com<br />
do<br />
rm -r /srv/www/htdocs/$domain/wordpress/wp-content/plugins<br />
cp -r plugins /srv/www/htdocs/$domain/wordpress/wp-content<br />
done</code></p>
<p>Good luck and happy blogging.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/updating-multiple-wordpress-installations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Crashed WordPress MySQL Tables</title>
		<link>http://www.peterglaeser.com/crashed-wordpress-mysql-tables/</link>
		<comments>http://www.peterglaeser.com/crashed-wordpress-mysql-tables/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 19:55:30 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.affiliatetracking.de/crashed-wordpress-mysql-tables/</guid>
		<description><![CDATA[Today I received a couple of my emails telling me that all posts of this blog were deleted. At first I thought people were kidding but then I got really scared. At first I thought somebody had hacked into my &#8230; <a href="http://www.peterglaeser.com/crashed-wordpress-mysql-tables/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I received a couple of my emails telling me that all posts of this blog were deleted. At first I thought people were kidding but then I got really scared. At first I thought somebody had hacked into my WordPress. But I always update all my blogs on the same day a new WordPress version comes out.</p>
<p>It turned out that the MySQL table containing the posts crashed. The MySQL log told me that by post table &#8220;is marked as crashed and should be repaired&#8221;. Great! But a little bit of research solved the problem. You need to go to the corresponding MySQL database directory, for example <em>/var/lib/mysql/wordpress</em>, and execute the following commands as root:</p>
<blockquote><p><em>/etc/init.d/mysql stop<br />
myisamchk -r wp_posts.MYI<br />
/etc/init.d/mysql start</em></p></blockquote>
<p>Problem solved within a few seconds. If that hadn&#8217;t worked I would have used my backups that are created hourly. Let me know if I should write something about backup strategies for standard root servers too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/crashed-wordpress-mysql-tables/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress blockiert Zanox-Links</title>
		<link>http://www.peterglaeser.com/wordpress-blockiert-zanox-links/</link>
		<comments>http://www.peterglaeser.com/wordpress-blockiert-zanox-links/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 09:05:02 +0000</pubDate>
		<dc:creator>Peter Glaeser</dc:creator>
				<category><![CDATA[Affiliate Networks]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Zanox]]></category>

		<guid isPermaLink="false">http://www.affiliatetracking.de/2007/08/24/wordpress-blockiert-zanox-links/</guid>
		<description><![CDATA[Wie von Henning und Max berichtet werden Tracking-Links von Zanox in Blogs auf wordpress.com blockiert. Warum bei WordPress so absolut gegen Affiliate-Links vorgegangen wird ist fÃ¼r mich nicht verstÃ¤ndlich. Erstens sollen Leute, die guten Content schreiben, auch dafÃ¼r belohnt werden &#8230; <a href="http://www.peterglaeser.com/wordpress-blockiert-zanox-links/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wie von Henning und <a href="http://webmaster.nietzsche.at/485-wordpresscom-mag-keine-seo-blogs.php" target="_blank" class="broken_link">Max</a> berichtet werden Tracking-Links von Zanox in Blogs auf wordpress.com blockiert.</p>
<p>Warum bei WordPress so absolut gegen Affiliate-Links vorgegangen wird ist fÃ¼r mich nicht verstÃ¤ndlich. Erstens sollen Leute, die guten Content schreiben, auch dafÃ¼r belohnt werden kÃ¶nnen. Und zweitens ist es auch mÃ¶glich dass z.B. ein gemeinnÃ¼tziger Verein sein eigenes Merchandising Ã¼ber Partnerprogramme von Online-Shops abwickelt und die Provisionszahlung durch Zanox erhÃ¤lt. AuÃŸerdem bietet Zanox ja auch noch sein sogenanntes &#8220;Fundraising@&#8221; an, womit wohltÃ¤tige Organisationen Ã¼ber Zanox-Spenden-Shops Geld sammeln kÃ¶nnen.</p>
<p>Zur LÃ¶sung dieses Problems gibt es viele MÃ¶glichkeiten. Hier sind drei einfache:</p>
<ol>
<li>Ihr nutzt nicht wordpress.com sondern installiert die Applikation auf Eurem Server.</li>
<li>Ihr benutzt fÃ¼r die Links eine andere Domain (nicht die von Zanox) und nutzt Weiterleitungen.</li>
<li>Ihr nutzt kein Zanox sondern weniger bekannte Affiliate-Netzwerke.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.peterglaeser.com/wordpress-blockiert-zanox-links/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

