<?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>Hartwin Hoyer</title>
	<atom:link href="http://hartwin-hoyer.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://hartwin-hoyer.de</link>
	<description></description>
	<lastBuildDate>Mon, 16 Apr 2012 14:21:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Installed my own Theme</title>
		<link>http://hartwin-hoyer.de/2012/03/27/installed-my-own-theme/</link>
		<comments>http://hartwin-hoyer.de/2012/03/27/installed-my-own-theme/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 19:39:23 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Theme css3 html5]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/?p=105</guid>
		<description><![CDATA[I made a new theme which you can see here. The theme is going to change in the future, but this is the basic structure of it. It is using html5, css3 and no images.]]></description>
			<content:encoded><![CDATA[<p>I made a new theme which you can see here. The theme is going to change in the future, but this is the basic structure of it. It is using html5, css3 and no images.</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2012/03/27/installed-my-own-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set up phpeclipse for WordPress on Fedora 16</title>
		<link>http://hartwin-hoyer.de/2012/03/26/set-up-phpeclipse-for-wordpress-on-fedora-16/</link>
		<comments>http://hartwin-hoyer.de/2012/03/26/set-up-phpeclipse-for-wordpress-on-fedora-16/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 20:48:15 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Fedora Eclipse]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/?p=103</guid>
		<description><![CDATA[This time we are going to set up phpeclipse to create a Theme for WordPress on Fedora 16. WordPress is installed at our localhost. We are creating a symbolic link to our workspace. With this configuration, we can change the code on the fly without pushing the code to wordpress every time.: mkdir -p ~/workspace/themes/mytheme [...]]]></description>
			<content:encoded><![CDATA[<p>This time we are going to set up phpeclipse to create a Theme for WordPress on Fedora 16. WordPress is installed at our localhost.</p>
<p>We are creating a symbolic link to our workspace. With this configuration, we can change the code on the fly without pushing the code to wordpress every time.:<br />
<code>mkdir -p ~/workspace/themes/mytheme<br />
sudo ln -s ~/workspace/themes/mytheme /usr/share/wordpress/wp-content/themes/mytheme</code></p>
<p>Install phpeclipse:<br />
<code>yum -y install eclipse-phpeclipse</code></p>
<p>Start eclipse:<br />
<code>ALT+F2 eclipse</code><br />
select the workspace as default and click ok.<br />
click: File-New-Project-PHP-PHP Project-Next-mytheme-Finish</p>
<p>Now we are ready to begin with our new theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2012/03/26/set-up-phpeclipse-for-wordpress-on-fedora-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install WordPress on Fedora 16</title>
		<link>http://hartwin-hoyer.de/2012/03/26/install-wordpress-on-fedora-16/</link>
		<comments>http://hartwin-hoyer.de/2012/03/26/install-wordpress-on-fedora-16/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 20:00:51 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/?p=98</guid>
		<description><![CDATA[Here are the steps to install wordpress with a fresh Fedora 16: Get super user rights: su - Install mysql-server: yum -y install mysql-server start your mysql database: service mysqld start connect your mysql client with your mysql server: mysql -u root Configure your wordpress mysql database (use your own username and password): mysql&#62; create [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the steps to install wordpress with a fresh Fedora 16:</p>
<p>Get super user rights:<br />
<code>su -</code></p>
<p>Install mysql-server:<br />
<code>yum -y install mysql-server</code></p>
<p>start your mysql database:<br />
<code>service mysqld start</code></p>
<p>connect your mysql client with your mysql server:<br />
<code>mysql -u root</code></p>
<p>Configure your wordpress mysql database (use your own username and password):<br />
<code><br />
mysql&gt; create database wordpress;<br />
Query OK, 1 row affected (0.00 sec)</code><br />
<code><br />
mysql&gt; grant all privileges on wordpress.* to wordpress@localhost identified by 'wordpress';<br />
Query OK, 0 rows affected (0.00 sec)</code><br />
<code><br />
mysql&gt; flush privileges;<br />
Query OK, 0 rows affected (0.00 sec)</code><br />
<code><br />
mysql&gt; exit</code></p>
<p>Install WordPress:<br />
<code>yum -y install wordpress</code></p>
<p>Edit /etc/wordpress/wp-config.php and change database_name_here, username_here and password_here to the values you provided in the grant sql statement above. Here it would be &#8216;wordpress&#8217; all three times. The beginning of the config file looks like this:</p>
<p><code>define('DB_NAME', 'wordpress');</code></p>
<p><code>/** MySQL database username */<br />
define('DB_USER', 'wordpress');</code><br />
<code><br />
/** MySQL database password */<br />
define('DB_PASSWORD', 'wordpress');</code><br />
<code><br />
/** MySQL hostname */<br />
define('DB_HOST', 'localhost');</code></p>
<p>The wordpress package installed a httpd config file at <code>/etc/httpd/conf.d/wordpress.conf</code> the following:</p>
<p><code>Alias /wordpress /usr/share/wordpress</code></p>
<p>Start your Apache:<br />
<code>service httpd start</code></p>
<p>Access wordpress at http://localhost/wordpress in your browser. Follow the installation instructions.</p>
<p>Login -&gt; voila</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2012/03/26/install-wordpress-on-fedora-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin</title>
		<link>http://hartwin-hoyer.de/2012/03/22/wordpress-plugin/</link>
		<comments>http://hartwin-hoyer.de/2012/03/22/wordpress-plugin/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 14:39:08 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/?p=93</guid>
		<description><![CDATA[I wrote my very first plugin for WordPress. The only thing it does is to append a string to the name of the author of a comment if the email address of the author contains a certain string. I was using the get_comment_author filter hook of WP. It is activated whenever the author of the [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote my very first plugin for WordPress.</p>
<p>The only thing it does is to append a string to the name of the author of a comment if the email address of the author contains a certain string. I was using the get_comment_author filter hook of WP. It is activated whenever the author of the commentator gets out of the database.</p>
<p>More information about plugins and hooks in wordpress: <a href="http://codex.wordpress.org/Plugin_API">http://codex.wordpress.org/Plugin_API</a></p>
<p>A list of the hooks in wordpress with displayed source code of the usage: <a href="http://adambrown.info/p/wp_hooks/hook">http://adambrown.info/p/wp_hooks/hook</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2012/03/22/wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enforce https</title>
		<link>http://hartwin-hoyer.de/2010/04/22/force-https/</link>
		<comments>http://hartwin-hoyer.de/2010/04/22/force-https/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 10:49:05 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[enforce]]></category>
		<category><![CDATA[force]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2010/04/22/force-https/</guid>
		<description><![CDATA[If you want to enforce the users of your Apache server to use https instead of http, you can write a Rewrite which works without the mod_ssl module. The Rewrite is stored either in your httpd configuration or in a .htaccess file. RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301] Sometimes you run into [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to enforce the users of your Apache server to use https instead of http, you can write a Rewrite which works without the mod_ssl module.<br />
The Rewrite is stored either in your httpd configuration or in a .htaccess file.<br />
<code><br />
RewriteEngine On<br />
RewriteCond %{HTTPS} off<br />
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301]<br />
</code></p>
<p>Sometimes you run into problems with authentication systems which are configured in a .htaccess file too. This leads to double authentications which you want to avoid because the first authentication works through http (which is bad enough), then the rewrite is putting you to https and you have to authenticate again.<br />
To avoid this, you can store the configuration of the authentication system into your ssl httpd configuration in a directory tag. This ensures that the user of your web-server when landing on http does not have to authenticate but will be placed to https and have to authenticate there.</p>
<p>If you do not have access to the ssl configuration you might want to test out<br />
<code><br />
SSLOptions +StrictRequire<br />
SSLRequireSSL<br />
SSLRequire %{HTTP_HOST} eq "http://yourservername"<br />
ErrorDocument 403 https://yourservername<br />
</code><br />
in your .htaccess file. I have to admit i didn&#8217;t test the SSLRequireSSL option by myself, but it worked for some people.</p>
<p>For more information about Rewrites, .htaccess files and ssl support, have a look at the <a tagret="Apache_Doc" href="http://httpd.apache.org/docs/">Apache httpd documentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2010/04/22/force-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commuting</title>
		<link>http://hartwin-hoyer.de/2010/01/20/commuting/</link>
		<comments>http://hartwin-hoyer.de/2010/01/20/commuting/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 09:04:26 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2010/01/20/commuting/</guid>
		<description><![CDATA[Commuting Ursprünglich hochgeladen von photon ? New bus-station in Böblingen]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/photon_de/4052720138/" title="photo sharing"><img src="http://farm3.static.flickr.com/2619/4052720138_0416a81e84_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><a href="http://www.flickr.com/photos/photon_de/4052720138/">Commuting</a><br />
<br />
Ursprünglich hochgeladen von <a href="http://www.flickr.com/people/photon_de/">photon ?</a><br />
</span><br />
<br clear="all" /></p>
<p>New bus-station in Böblingen</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2010/01/20/commuting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move</title>
		<link>http://hartwin-hoyer.de/2009/09/03/move/</link>
		<comments>http://hartwin-hoyer.de/2009/09/03/move/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:21:46 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2009/09/03/move/</guid>
		<description><![CDATA[Move Ursprünglich hochgeladen von photon ? Played around with Gimp using this howto: http://www.photoshopsupport.com/tutorials/or/cross-processing.html]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/photon_de/3884499962/" title="photo sharing"><img src="http://farm3.static.flickr.com/2667/3884499962_e3e724ed8c_m.jpg" alt="" style="border: solid 2px #000000;" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><a href="http://www.flickr.com/photos/photon_de/3884499962/">Move</a></p>
<p>Ursprünglich hochgeladen von <a href="http://www.flickr.com/people/photon_de/">photon ?</a><br />
</span><br />
<br clear="all" /></p>
<p>Played around with Gimp using this howto:<br />
<a href="http://www.photoshopsupport.com/tutorials/or/cross-processing.html">http://www.photoshopsupport.com/tutorials/or/cross-processing.html</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2009/09/03/move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emerald</title>
		<link>http://hartwin-hoyer.de/2009/08/19/emerald/</link>
		<comments>http://hartwin-hoyer.de/2009/08/19/emerald/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 09:01:22 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2009/08/19/emerald/</guid>
		<description><![CDATA[Emerald Ursprünglich hochgeladen von photon ? A dragonfly at the Lake of Böblingen]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/photon_de/3836499648/" title="photo sharing"><img src="http://farm3.static.flickr.com/2488/3836499648_2d7904c963_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><a href="http://www.flickr.com/photos/photon_de/3836499648/">Emerald</a><br />
<br />
Ursprünglich hochgeladen von <a href="http://www.flickr.com/people/photon_de/">photon ?</a><br />
</span><br />
<br clear="all" /></p>
<p>A dragonfly at the Lake of Böblingen</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2009/08/19/emerald/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glowing-Time</title>
		<link>http://hartwin-hoyer.de/2009/08/19/glowing-time/</link>
		<comments>http://hartwin-hoyer.de/2009/08/19/glowing-time/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 06:12:15 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2009/08/19/glowing-time/</guid>
		<description><![CDATA[Glowing-Time Ursprünglich hochgeladen von photon ? Found this one on a small green place right beside a parking-lot. It seems to be a Malope trifida. No pp aside from cropping and tagging.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/photon_de/3797006405/" title="photo sharing"><img src="http://farm4.static.flickr.com/3569/3797006405_19f306434c_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><a href="http://www.flickr.com/photos/photon_de/3797006405/">Glowing-Time</a><br />
<br />
Ursprünglich hochgeladen von <a href="http://www.flickr.com/people/photon_de/">photon ?</a><br />
</span><br />
<br clear="all" /></p>
<p>Found this one on a small green place right beside a parking-lot.<br />
It seems to be a Malope trifida.<br />
No pp aside from cropping and tagging.</p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2009/08/19/glowing-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rush Hour</title>
		<link>http://hartwin-hoyer.de/2009/07/06/rush-hour/</link>
		<comments>http://hartwin-hoyer.de/2009/07/06/rush-hour/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 06:38:23 +0000</pubDate>
		<dc:creator>Hartwin Hoyer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://hartwin-hoyer.de/2009/07/06/rush-hour/</guid>
		<description><![CDATA[Rush Hour Ursprünglich hochgeladen von photon ? I just wanted to take a photo of this bee and then this little lady bug appeared. Explored #467 Thank You]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/photon_de/3646893685/" title="photo sharing"><img src="http://farm4.static.flickr.com/3609/3646893685_7e7fa4d9fe_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><a href="http://www.flickr.com/photos/photon_de/3646893685/">Rush Hour</a><br />
<br />
Ursprünglich hochgeladen von <a href="http://www.flickr.com/people/photon_de/">photon ?</a><br />
</span><br />
<br clear="all" /></p>
<p>I just wanted to take a photo of this bee and then this little lady bug appeared.</p>
<p>Explored #467<br />
Thank You <img src='http://hartwin-hoyer.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hartwin-hoyer.de/2009/07/06/rush-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

