<?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"
	>

<channel>
	<title>h4x3d.com themes</title>
	<atom:link href="http://themes.h4x3d.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://themes.h4x3d.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 09 Apr 2008 07:36:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Wordpress 2.3 to 2.5</title>
		<link>http://themes.h4x3d.com/wordpress-23/</link>
		<comments>http://themes.h4x3d.com/wordpress-23/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 07:04:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[design]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[update]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://themes.h4x3d.com/wordpress-23/</guid>
		<description><![CDATA[Update: 9th of April, 2008
This blog runs Wordpress 2.5, which confirms the theme(s) to be compatible to Wordpress 2.5.
Also tagging and widget support has been built-in.
This blog is now running Wordpress 2.3 (updated as by Mid-October). This theme seems to work with it, yet no tagging support has been built-in. I will do that once [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update: 9th of April, 2008</strong><br />
This blog runs Wordpress 2.5, which confirms the theme(s) to be compatible to Wordpress 2.5.<br />
Also tagging and widget support has been built-in.</p>
<p><span style="text-decoration: line-through;">This blog is now running Wordpress 2.3 (updated as by Mid-October). This theme seems to work with it, yet no tagging support has been built-in. I will do that once I have more time.</span></p>
<p>You can <a href="http://www.h4x3d/themes/feather/">get this Rainbow Feather theme</a> on my blog and design portfolio at <a href="http://www.h4x3d.com">h4&#215;3d.com</a></p>
<p>If I have some spare time over christmas I plan to continue my theme-challenge. As I have bought an EOS 350D recently, there are many pictures of objects and nature to be used. Stay locked!<span id="more-57"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://themes.h4x3d.com/wordpress-23/feed/</wfw:commentRss>
		</item>
		<item>
		<title>subversion on centOS</title>
		<link>http://themes.h4x3d.com/subversion-on-centos/</link>
		<comments>http://themes.h4x3d.com/subversion-on-centos/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 21:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[subversion]]></category>

		<category><![CDATA[update]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://themes.h4x3d.com/subversion-on-centos/</guid>
		<description><![CDATA[Improved Backup and Restore Utilities give you the ability to backup and restore Plesk server settings through command line interface.How cool is this? Subversion on CentOS
(custom field - sponge value 1 via wp-unformatted plugin to tackle p-offset bug)
* Only Root users can create vhost.conf files.
* After you make changes to the conf files, you have [...]]]></description>
			<content:encoded><![CDATA[<p>Improved Backup and Restore Utilities give you the ability to backup and restore Plesk server settings through command line interface.How cool is this? <a href="http://alexle.net/archives/138">Subversion on CentOS</a><br />
(custom field - sponge value 1 via <a href="http://alexking.org/projects/wordpress/plugins/wp-unformatted.zip">wp-unformatted plugin</a> to tackle p-offset bug)</p>
<p>* Only Root users can create vhost.conf files.<br />
* After you make changes to the conf files, you have to tell Plesk to reload the new configuration. To do so, run</p>
<p>#/usr/local/psa/admin/sbin/websrvmng &#8211;reconfigure-vhost &#8211;vhost-name=</p>
<p>For more information, please consult the Plesk&#8217;s Admins Guide on sub-domain customization</p>
<p>An Image here:</p>
<p><a href="http://farm3.static.flickr.com/2366/1514691556_e01365ab3e.jpg" rel="lightbox[55]"><img src="http://farm3.static.flickr.com/2366/1514691556_e01365ab3e_m.jpg" alt="10,000 feet above!" /></a></p>
<p>D. Customizing Sub-Domain configurations</p>
<p>As I created a subdomain “svn” for my site, makefun.us, I had to create a vhost.conf file under /var/www/vhosts/makefun.us/subdomains/svn/conf/vhost.conf. Also, my repository is under /var/svnrepo/, so here is the content of the vhost.conf file</p>
<p>#svn.makefun.us &#8212; vhost.conf file<br />
<location><br />
DAV svn<br />
SVNPath /var/svnrepo/<br />
AuthType Basic<br />
AuthName &#8220;Makefun.us Subversion Repository&#8221;<br />
AuthUserFile /etc/svn-auth-file<br />
Require valid-user</location></p>
<p>First of all, with DAV svn we ask Apache to hand over to the mod_dav_svn module when there’s a request to http://svn.makefun.us (the location /). Then we specify the repository’s root at /var/svnrepo/. Then we specify that this is a private repository by asking Apache to provide Basic Authorization (which means the authenticated password will be transmitted as text via the wire). Well, we name our private zone the “Makefun.us Subversion Repositor” and the user accounts are stored in /etc/svn-auth-file. Finally, to access the repository via the web, the user must be able to authenticate – as we only allow valid-user to access (Require valid-user)</p>
<p>Next, I created a new user account for myself so that I can access the repository:</p>
<p>#htpasswd -c /etc/svn-auth-file my_user_name</p>
<p>At this point, you can either restart Apache by running #server httpd restart or just use the websrvmng of Plesk to pick up the new configuration. I just restarted Apache. If everything works out correctly for you, if you point your browser to http://svn.yourdomain.com, you would see a prompt for username and password. Enter your just created account, you can access to your very own the SVN repository. How amazing is that?</p>
]]></content:encoded>
			<wfw:commentRss>http://themes.h4x3d.com/subversion-on-centos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An example of child categories</title>
		<link>http://themes.h4x3d.com/an-example-of-child-categories/</link>
		<comments>http://themes.h4x3d.com/an-example-of-child-categories/#comments</comments>
		<pubDate>Sun, 20 May 2007 06:59:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[categories]]></category>

		<category><![CDATA[child]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[list]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://themes.h4x3d.com/an-example-of-child-categories/</guid>
		<description><![CDATA[A list

one, two
threee
four


ordered list:

one
two
threee
four
five

]]></description>
			<content:encoded><![CDATA[<p>A list</p>
<ul>
<li>one, two</li>
<li>threee</li>
<li>four</li>
</ul>
<p><a href="http://static01.h4x3d.com/themes/feather/screenshots/slimbox/Firefox.jpg" rel="lightbox[56]"><img src="http://static01.h4x3d.com/themes/feather/feather_English/screenshot.png" alt="Rainbow feather theme" /></a></p>
<p>ordered list:</p>
<ol>
<li>one</li>
<li>two</li>
<li>threee</li>
<li>four</li>
<li>five</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://themes.h4x3d.com/an-example-of-child-categories/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.1 hi and bye</title>
		<link>http://themes.h4x3d.com/wordpress-21-hi-and-bye/</link>
		<comments>http://themes.h4x3d.com/wordpress-21-hi-and-bye/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 14:46:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themes.h4x3d.com/wordpress-21-hi-and-bye/</guid>
		<description><![CDATA[Wordpress&#8217; latest release 2.1. is a clear hi and bye for me.
Seems like it is not yet ready for launch.
The upgrade process this time was somewhat troublesome: if I didn&#8217;t mix up things WP 2.1 adds a table called link2cat to your database, which -prior to 2.1.- didn&#8217;t exist.
This change conflicted with various plugins I [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress&#8217; latest release 2.1. is a clear <em>hi</em> and <b>bye</b> for me.<br />
Seems like it is not yet ready for launch.</p>
<p>The upgrade process this time was somewhat troublesome: if I didn&#8217;t mix up things WP 2.1 adds a table called link2cat to your database, which -prior to 2.1.- didn&#8217;t exist.</p>
<p>This change conflicted with various plugins I had used before, e.g. the <a href="http://katesgasis.com/2005/10/24/sideblog/" target="_blank">Sideblog Wordpress Plugin</a> by Kates. But hence I didn&#8217;t know what went wrong after upgrading I had to play blindfish for about an hour. Somehow the pages of my site disappeared. All wordpress pages were no longer accessible and returned a 404 error.<br />
Weird, because on the Admin area they were still visible and editable.<br />
Another page was accessible, but the next, or newly created pages weren&#8217;t.<br />
After all I found out that this was caused by combination of changes.</p>
<p>a. wordpress 2.1<br />
b. Sideblog Wordpress Plugin 3.6</p>
<p>in the process of switching back I ruined my database and had to reupload a backup.<br />
I am lucky now I got all posts and pages back and working and will conclude by saying<br />
<em>&#8220;never change a running system&#8221;</em>.</p>
<p>p.s. I will get the themes coming as soon as I got the right permissions on the themeviewer website by wordpress.<br />
Two themes that are ready so far are called <b>corporateFK</b> and <b>fastr</b>. No it is not related to flickr or simplr, but thanks for asking!</p>
]]></content:encoded>
			<wfw:commentRss>http://themes.h4x3d.com/wordpress-21-hi-and-bye/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stunning Fortress Forever (hl2 mod) media released</title>
		<link>http://themes.h4x3d.com/stunning-fortress-forever-hl2-mod-media-released/</link>
		<comments>http://themes.h4x3d.com/stunning-fortress-forever-hl2-mod-media-released/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 13:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themes.h4x3d.com/stunning-fortress-forever-hl2-mod-media-released/</guid>
		<description><![CDATA[I have been waiting for Team Fortress 2 for years now, I remember buying all these Game Mags in the 90&#8217;s but what the guys at fortress forever have come up with is incredible.
FF was scheduled for release in August 2006, but as it could be read in the
DEV journals the reason d&#8217;etre for the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been waiting for Team Fortress 2 for years now, I remember buying all these Game Mags in the 90&#8217;s but what the guys at <a href="http://www.fortress-forever.com" target="_blank">fortress forever</a> have come up with is incredible.<br />
<a href="http://www.fortress-forever.com" target="_blank">FF</a> was scheduled for release in August 2006, but as it could be read in the<br />
<a href="http://www.fortress-forever.com/?a=devj#168" target="_blank">DEV journals</a> the reason d&#8217;etre for the delay was the high amount of bugs that had to be fixed/worked on.</p>
<p>As I see it, Fortress Forever (It is a Team Fortress mod for the Half-life 2&#8217;s Source Engine), is already in the BETA-phase but not yet ready to be released to the public.</p>
<p>The media files they have released on their website yesterday are stunning!<br />
I don&#8217;t even want Team Fortress2 anymore if I can get this.</p>
<p>Either go to <a href="http://www.fortress-forever.com" target="_blank">&#8594; their official website</a> (Fortress-Forever.com),<br />
or look at the media (YouTube) below. I am speechless&#8230;</p>
<p><object width="400" height="350"><param name="movie" value="http://www.youtube.com/v/9hRUAxwidN4"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/9hRUAxwidN4" type="application/x-shockwave-flash" wmode="transparent" width="400" height="350"></embed></object><br />
<br />Video download links: <a href="http://www.youtube.com/watch?v=9hRUAxwidN4" target="_blank">Youtube</a> | <a href="http://xenon.thecatacombs.net/FFVid.wmv" target="_blank">Mirror 1</a> | <a href="http://hydrogen.thecatacombs.net/FFVid.wmv" target="_blank">Mirror 2</a> | <a href="http://trepid.net/ff/files/FFVid.wmv" target="_blank">Mirror 3</a> | <a href="http://www.teamfortress2.de/downloads_load.php?id=63&#038;mirror=0" target="_blank">Mirror 4 (teamfortress2.de)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themes.h4x3d.com/stunning-fortress-forever-hl2-mod-media-released/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
