<?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>Christoph Schüßler &#187; update</title>
	<atom:link href="http://herr-schuessler.de/blog/tags/update/feed/" rel="self" type="application/rss+xml" />
	<link>http://herr-schuessler.de/blog</link>
	<description>Dev-Blog</description>
	<lastBuildDate>Tue, 07 Feb 2012 07:44:45 +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>jQuery.popeye 2.0 released</title>
		<link>http://herr-schuessler.de/blog/jquery-popeye-2-0/</link>
		<comments>http://herr-schuessler.de/blog/jquery-popeye-2-0/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 10:24:23 +0000</pubDate>
		<dc:creator>Christoph Schüßler</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://herr-schuessler.de/blog/?p=311</guid>
		<description><![CDATA[I have just released a new major version of my popular image gallery script jQuery.popeye. It features more customization options, better cross browser and mobile support and tons of bugfixes. I have set up a jQuery.popeye site where you can &#8230; <a href="http://herr-schuessler.de/blog/jquery-popeye-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have just released a new major version of my popular image gallery script jQuery.popeye. It features more customization options, better cross browser and mobile support and tons of bugfixes.<br />
<span id="more-311"></span></p>
<p>I have set up a <a href="http://dev.herr-schuessler.de/jquery/popeye/">jQuery.popeye site</a> where you can find <a href="http://dev.herr-schuessler.de/jquery/popeye/doc.html">documentation</a> and <a href="http://dev.herr-schuessler.de/jquery/popeye/demo.html">demos</a>.</p>
<p>You will also find links to a new feature request forum and bug tracker there. Hope you like the new stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://herr-schuessler.de/blog/jquery-popeye-2-0/feed/</wfw:commentRss>
		<slash:comments>96</slash:comments>
		</item>
		<item>
		<title>Lösung für Probleme mit automatischen Upgrades in WordPress 2.7</title>
		<link>http://herr-schuessler.de/blog/loesung-fuer-probleme-mit-automatischen-upgrades-in-wordpress-2-7/</link>
		<comments>http://herr-schuessler.de/blog/loesung-fuer-probleme-mit-automatischen-upgrades-in-wordpress-2-7/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 11:36:43 +0000</pubDate>
		<dc:creator>Christoph Schüßler</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://herr-schuessler.de/blog/?p=236</guid>
		<description><![CDATA[Es klingt vielversprechend, funktioniert aber anscheinend auf den wenigsten Servern reibungslos: die neue automatische Upgrade-Funktion für Plugins, Themes und die gesamte WordPress-Installation. Eine Quelle immer wiederkehrender Fehler ist dabei anscheinend, dass WordPress der recht naiven Annahme unterliegt, dass es sich &#8230; <a href="http://herr-schuessler.de/blog/loesung-fuer-probleme-mit-automatischen-upgrades-in-wordpress-2-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Es klingt vielversprechend, funktioniert aber anscheinend auf den wenigsten Servern reibungslos: die neue <strong>automatische Upgrade-Funktion für Plugins, Themes und die gesamte WordPress-Installation</strong>.<br />
<span id="more-236"></span><br />
Eine Quelle immer wiederkehrender Fehler ist dabei anscheinend, dass WordPress der recht naiven Annahme unterliegt, dass es sich immer im Server-Root befindet &#8211; und nicht, wie in meinem Fall in einem Unterordner. Dies, gepaart mit <a href="http://www.lastmanstanding.de/2008-12-19/wordpress-27-loesung-fuer-automatisches-plugincore-update-problem">dem Problem der fehlenden Zugriffsrechten auf das tmp-Verzeichnis, für das es bei es bereits eine gute Lösung gibt</a>, mündete bisher bei mir in der nüchternen Fehlermeldung <em>Unable to locate WordPress Plugin directory. Plugin upgrade Failed</em> (sic.)</p>
<p>Glücklicherweise hat WordPress zwei interne Konstanten, mit denen man die vom System (nicht) gefundenen <em>plugin</em>- und <em>wp-content</em>-Verzeichnisse korrekt zuweisen kann. Dazu fügt man der <code>wp-config.php</code> ganz unten folgende Zeilen hinzu:<br />
<code><br />
define('FTP_PLUGIN_DIR', ABSPATH . 'wp-content/plugins');<br />
define('FTP_CONTENT_DIR', ABSPATH . 'wp-content');<br />
</code></p>
<p>Das war&#8217;s dann auch schon.</p>
]]></content:encoded>
			<wfw:commentRss>http://herr-schuessler.de/blog/loesung-fuer-probleme-mit-automatischen-upgrades-in-wordpress-2-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

