<?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>sattes-faction</title>
	<atom:link href="http://www.sattes-faction.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sattes-faction.de</link>
	<description>(i can't get no)</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:15:35 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>picasaView 1.1.4 released</title>
		<link>http://www.sattes-faction.de/2010/08/picasaview-1-1-4-released/</link>
		<comments>http://www.sattes-faction.de/2010/08/picasaview-1-1-4-released/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 19:14:43 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[picasaView]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=122</guid>
		<description><![CDATA[This is a more-or-less minor relese. Besides an Arabic translation it’s now possible to view non-albums, but in this version only when viewing an album directly. It will not work when viewing all albums (not yet). Just use the tag like this (the token is generated by picasaweb, so you have to look there): &#91;picasaView [...]]]></description>
			<content:encoded><![CDATA[<p>This is a more-or-less minor relese. Besides an Arabic translation it’s now possible to view non-albums, but in this version only when viewing an album directly. It will not work when viewing all albums (not yet). Just use the tag like this (the token is generated by picasaweb, so you have to look there):</p>
<pre>&#91;picasaView album='ALBUMNAME' authkey='AUTHTOKEN']</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2010/08/picasaview-1-1-4-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to manually update ImageMagick and IMagick for PHP on Debian Lenny</title>
		<link>http://www.sattes-faction.de/2010/06/how-to-manually-update-imagemagick-and-imagick-for-php-on-debian-lenny/</link>
		<comments>http://www.sattes-faction.de/2010/06/how-to-manually-update-imagemagick-and-imagick-for-php-on-debian-lenny/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 13:50:19 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[imagemagick]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=112</guid>
		<description><![CDATA[The current Debian Lenny installation comes with a pretty old ImageMagick-package. In my case I need ImageMagick for the IMagick-extension in PHP. As IMagick compiles against the currently installed ImageMagick-version, it&#8217;s also necessary to re-install the IMagick-package. As I had some problems with this, I thought I&#8217;d share this information, maybe it&#8217;s useful for someone. [...]]]></description>
			<content:encoded><![CDATA[<p>The current Debian Lenny installation comes with a pretty old ImageMagick-package. In my case I need ImageMagick for the IMagick-extension in PHP. As IMagick compiles against the currently installed ImageMagick-version, it&#8217;s also necessary to re-install the IMagick-package.</p>
<p>As I had some problems with this, I thought I&#8217;d share this information, maybe it&#8217;s useful for someone. A big help was <a href="http://kete.net.nz/documentation/topics/show/116">this article</a> where I took some commands from.</p>
<h3>1. Download, extract and install new ImageMagick-version</h3>
<p>I don&#8217;t use any more configuration options with ImageMagick, so you might enhance the ./configure statement</p>
<pre>wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.6.2-6.tar.gz
tar xvzf ImageMagick-6.6.2-6.tar.gz
cd ImageMagick-6.6.2-6
./configure
make
make install
</pre>
<p>You can delete the ImageMagick and the extraction dir afterwards.</p>
<h3>2. Make the new ImageMagick-installation &#8220;known&#8221; to the system</h3>
<p>Create or edit the file <strong>/etc/ld.so.conf </strong>and add the following line</p>
<pre>include /etc/ld.so.conf.d/*.conf
</pre>
<p>Create or edit the file <strong>/etc/ld.so.conf </strong>and add the following:</p>
<pre># Added because we built ImageMagick from source
/usr/local/lib
</pre>
<p>Open bashrc (e.g. nano ~/.bashrc) and add the following:</p>
<pre># Set LD Lib path
LD_LIBRARY_PATH=/usr/local/lib
export LD_LIBRARY_PATH</pre>
<p>Re-link the libraries:</p>
<pre>ldconfig
</pre>
<h3>3. Re-Install IMagick package</h3>
<p>At this point, ImageMagic is ready to go, but we need to re-install the IMagick-Package again (so it can compile against the new ImageMagick version):</p>
<pre>pecl uninstall imagick
pecl install imagick</pre>
<p>Maybe you need to restart Apache then:</p>
<pre>apache2ctl restart</pre>
<p>If all went well, you can take a look at a phpinfo-page to see if the new ImageMagick-version is ready. It should look like this:</p>
<p><a href="http://www.sattes-faction.de/wp-content/uploads/2010/06/php-imagick.png" rel="lightbox[112]"><img class="alignnone size-full wp-image-117" title="PHPInfo Imagick" src="http://www.sattes-faction.de/wp-content/uploads/2010/06/php-imagick.png" alt="" width="611" height="567" /></a></p>
<p>I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2010/06/how-to-manually-update-imagemagick-and-imagick-for-php-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>picasaView 1.1.3 released</title>
		<link>http://www.sattes-faction.de/2010/05/picasaview-1-1-3-released/</link>
		<comments>http://www.sattes-faction.de/2010/05/picasaview-1-1-3-released/#comments</comments>
		<pubDate>Sun, 16 May 2010 10:28:51 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[picasaview]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=110</guid>
		<description><![CDATA[It&#8217;s just a minor release, fixing a small bug with a template variable, adding some translations (thanks to the guys who contributed) and changing the html into a table less layout.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s just a minor release, fixing a small bug with a template variable, adding some translations (thanks to the guys who contributed) and changing the html into a table less layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2010/05/picasaview-1-1-3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>picasaView 1.1.2 released</title>
		<link>http://www.sattes-faction.de/2010/01/picasaview-1-1-2-released/</link>
		<comments>http://www.sattes-faction.de/2010/01/picasaview-1-1-2-released/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:38:22 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=95</guid>
		<description><![CDATA[This release contains only two minor additions. A new placeholder can now be used in the template albumDetails.html to output a simple image counter. And I added a Dutch translation (thanks to Stef Segers).]]></description>
			<content:encoded><![CDATA[<p>This release contains only two minor additions. A new placeholder can now be used in the template albumDetails.html to output a simple image counter. And I added a Dutch translation (thanks to <a href="http://www.stefansegers.nl/">Stef Segers</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2010/01/picasaview-1-1-2-released/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New theme &#8220;iowa Pro&#8221;</title>
		<link>http://www.sattes-faction.de/2009/12/new-theme-iowa-pro/</link>
		<comments>http://www.sattes-faction.de/2009/12/new-theme-iowa-pro/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 12:59:11 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=91</guid>
		<description><![CDATA[Today I replaced the discontinued theme &#8220;avenue&#8221; I used before with &#8220;iowa Pro&#8221;. It&#8217;s a really great theme that&#8217;s highly customizable. I only replaced the header image with an self-made one. If you&#8217;re interested in this theme you can get it here. Happy New Year by the way]]></description>
			<content:encoded><![CDATA[<p>Today I replaced the discontinued theme &#8220;avenue&#8221; I used before with &#8220;iowa Pro&#8221;. It&#8217;s a really great theme that&#8217;s highly customizable. I only replaced the header image with an self-made one. If you&#8217;re interested in this theme you can get it <a href="http://www.web-funk.de/wordpress-theme-iowa-download">here</a>. Happy New Year by the way <img src='http://www.sattes-faction.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/12/new-theme-iowa-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>picasaView 1.1.1 released</title>
		<link>http://www.sattes-faction.de/2009/12/picasaview-1-1-1-released/</link>
		<comments>http://www.sattes-faction.de/2009/12/picasaview-1-1-1-released/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 09:55:26 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[picasaView]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=82</guid>
		<description><![CDATA[This version is only a minor release. The polish translation has been added (thanks to Michał Stochliński) along with the .po-files for further translations and a documentation bug in the readme.txt has been fixed: when using &#8220;instantview&#8221; as attribute, a value has to be specified, e.g. &#8220;instantview=&#8217;yes&#8217;&#8221;. This is the last release for this year, [...]]]></description>
			<content:encoded><![CDATA[<p>This version is only a minor release. The polish translation has been added (thanks to Michał Stochliński) along with the .po-files for further translations and a documentation bug in the readme.txt has been fixed: when using &#8220;instantview&#8221; as attribute, a value has to be specified, e.g. &#8220;instantview=&#8217;yes&#8217;&#8221;.</p>
<p>This is the last release for this year, so I wish you all a Merry Christmas and a Happy New Year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/12/picasaview-1-1-1-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>picasaView version 1.1 released</title>
		<link>http://www.sattes-faction.de/2009/11/picasaview-version-1-1-released/</link>
		<comments>http://www.sattes-faction.de/2009/11/picasaview-version-1-1-released/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 17:31:59 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[picasaView]]></category>
		<category><![CDATA[picasaview]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=77</guid>
		<description><![CDATA[It took some time, but finally here it is &#8211; version 1.1 of picasaView. Besides mandatory bugfixes I switched to WordPress own shortcode-API which should make the whole thing more compatible, and to WordPress&#8217; URL-API so there is no more need to select the connection type for yourself. But please do take a look at [...]]]></description>
			<content:encoded><![CDATA[<p>It took some time, but finally here it is &#8211; version 1.1 of picasaView. Besides mandatory bugfixes I switched to WordPress own shortcode-API which should make the whole thing more compatible, and to WordPress&#8217; URL-API so there is no more need to select the connection type for yourself. But please do take a look at the history page for a complete changelog. I hope, you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/11/picasaview-version-1-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>picasaView 1.0.1 released</title>
		<link>http://www.sattes-faction.de/2009/10/picasaview-1-0-1-released/</link>
		<comments>http://www.sattes-faction.de/2009/10/picasaview-1-0-1-released/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 17:46:31 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[picasaView]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=72</guid>
		<description><![CDATA[Today I released version 1.0.1. The update contains a bugfix that caused the page to look ugly, when quickPaging was enabled. This only occured when the images were not already in the browser&#8217;s cache. For better troubleshooting I also improved the CURL messages to be more precise when something went wrong.]]></description>
			<content:encoded><![CDATA[<p>Today I released version 1.0.1. The update contains a bugfix that caused the page to look ugly, when quickPaging was enabled. This only occured when the images were not already in the browser&#8217;s cache. For better troubleshooting I also improved the  CURL messages to be more precise when something went wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/10/picasaview-1-0-1-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>picasaView version 1.0 released</title>
		<link>http://www.sattes-faction.de/2009/10/picasaview-version-1-0-released/</link>
		<comments>http://www.sattes-faction.de/2009/10/picasaview-version-1-0-released/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 10:53:00 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[picasaview]]></category>
		<category><![CDATA[picasaweb]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=67</guid>
		<description><![CDATA[After a long time I finally released version 1.0 of picasaView. The code was completely rewritten to feature more flexibility for future versions. Besides some bugfixes, albums can now be shown directly with the &#8220;instantView&#8221;-option and nearly all settings of the admin-options page can be overwritten directly in the tag. That means, you can have [...]]]></description>
			<content:encoded><![CDATA[<p>After a long time I finally released <a href="http://www.sattes-faction.de/picasaview/">version 1.0 of picasaView</a>. The code was completely rewritten to feature more flexibility for future versions. Besides some bugfixes, albums can now be shown directly with the &#8220;instantView&#8221;-option and nearly all settings of the admin-options page can be overwritten directly in the tag. That means, you can have multiple picasaView-tags on your blog (and even in the same post) with completely different settings in image size, server or user-id (and some more). See the readme.txt for more details.</p>
<p>If you find any bugs or have tips for improvement, please drop me a line!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/10/picasaview-version-1-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New release is on the way</title>
		<link>http://www.sattes-faction.de/2009/09/new-release-is-on-the-way/</link>
		<comments>http://www.sattes-faction.de/2009/09/new-release-is-on-the-way/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 20:52:49 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Unsorted]]></category>
		<category><![CDATA[picasaview]]></category>

		<guid isPermaLink="false">http://www.sattes-faction.de/?p=57</guid>
		<description><![CDATA[After a long time without any updates I just wanted to post a little life-sign. I&#8217;m still there! The next version is due (needs some testing before &#8211; if you&#8217;re interested, please contact me) and has some new features like instantView (directly print images of an album in a post) and way more flexibility in [...]]]></description>
			<content:encoded><![CDATA[<p>After a long time without any updates I just wanted to post a little life-sign. I&#8217;m still there! The next version is due (needs some testing before &#8211; if you&#8217;re interested, please contact me) and has some new features like instantView (directly print images of an album in a post) and way more flexibility in integration &#8211; this means you will be able to overwrite all default settings on each picasaView-call. So you can view multiple albums of different users with different settings in your blog. So please be patient for a few more days (I&#8217;m a little bit lazy I admit&#8230;)!</p>
<p>And thank you for all your feedback so far!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sattes-faction.de/2009/09/new-release-is-on-the-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
