<?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>WEBPIRATEN &#187; Apache</title>
	<atom:link href="http://webpiraten.de/index.php/category/server/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://webpiraten.de</link>
	<description>TECHNOLOGIE-BLOG</description>
	<lastBuildDate>Sun, 20 Jun 2010 19:00:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Nachfolgende Slashes mit mod_rewrite entfernen?</title>
		<link>http://webpiraten.de/index.php/2009/11/nachfolgende-slashes-mit-mod-rewrite-entfernen/</link>
		<comments>http://webpiraten.de/index.php/2009/11/nachfolgende-slashes-mit-mod-rewrite-entfernen/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 22:04:47 +0000</pubDate>
		<dc:creator>endorfin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod rewrite]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rule]]></category>
		<category><![CDATA[slash]]></category>
		<category><![CDATA[trailing]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=181</guid>
		<description><![CDATA[Mit diesem kleine Eintrag werden URLs mit einem Slash am Ende auf die gleiche URL ohne Slash am Ende geleitet. In meiner Rails Anwendung verursachten URLs mit einem Slash am Ende einen 403 &#8211; Forbidden. RewriteEngine On RewriteRule ^(.+)/$  $1 [R=301,L]]]></description>
			<content:encoded><![CDATA[<p>Mit diesem kleine Eintrag werden URLs mit einem Slash am Ende auf die gleiche URL ohne Slash am Ende geleitet. In meiner Rails Anwendung verursachten URLs mit einem Slash am Ende einen 403 &#8211; Forbidden.</p>
<pre class="brush: bash;">

RewriteEngine On
RewriteRule ^(.+)/$  $1 [R=301,L]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/11/nachfolgende-slashes-mit-mod-rewrite-entfernen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agavi auf XAMPP und Windows</title>
		<link>http://webpiraten.de/index.php/2009/10/agavi-auf-xampp-und-windows/</link>
		<comments>http://webpiraten.de/index.php/2009/10/agavi-auf-xampp-und-windows/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:29:09 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Agavi]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[agavi]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[phing]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=68</guid>
		<description><![CDATA[Nachdem ich das offizielle Agavi DOC durchforstet habe und keine Lösung für meine Testumgebung fand, stieß ich auf diesen Link hier: simonholywell.com/article/installing-agavi-on-xampp-windows Herr Holywell selbst hat eine prima Einführung in die Installation von Agavi auf XAMPP und Windows geliefert. Hier der Post im Original: Having recently heard of the Agavi project from a web framework [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich das offizielle Agavi DOC durchforstet habe und keine Lösung für meine Testumgebung fand, stieß ich auf diesen Link hier:</p>
<p><a href="http://www.simonholywell.com/article/installing-agavi-on-xampp-windows.html">simonholywell.com/article/installing-agavi-on-xampp-windows</a></p>
<p>Herr Holywell selbst hat eine prima Einführung in die Installation von Agavi auf XAMPP und Windows geliefert.</p>
<p><strong>Hier der Post im Original:</strong></p>
<p>Having recently heard of the Agavi project from a web framework showdown at a PHP conference in the UK I have decided to trial it. My setup is a WinXP computer with a default install of the latest XAMPP which has thrown up some issues with installing and building Agavi. Please see my hints below to overcome these issues.</p>
<p>   1. Open a command prompt (type cmd in the run console)<br />
   2. Navigate to your XAMMP PHP directory. Mine is C:\xampp-test\php<br />
   3. Execute pear.bat channel-discover pear.agavi.org<br />
   4. Execute pear.bat install agavi/agavi</p>
<p>Agavi is now installed! Now we just need a new default project to work from.</p>
<p>Agavi needs to be told where the phing batch file is stored.</p>
<p>   1. Edit the agavi.bat file in the XAMPP php directory. Mine is C:\xampp-test\php\agavi.bat<br />
   2. Change set PHING_COMMAND=phing to contain the full absolute path to phing.bat which is in the XAMPP php folder. Mine looks like this: set PHING_COMMAND=C:\xampp-test\php\phing.bat</p>
<p>Begin setting up your project directory.</p>
<p>   1. Create a new directory in your XAMPP directory. Mine is C:xampp-testhtdocssimonholywell.com<br />
   2. Create an empty text file called build.properties in the directory (this banishes a build error where phing fails if it cannot find the file)<br />
   3. Open a command prompt and navigate to the new directory<br />
   4. Execute agavi.bat project The agavi.bat file is stored in the XAMPP php folder. My command looked like this: C:\xampp-test\php\agavi.bat project<br />
   5. Follow the prompts the installer gives you (hitting enter will supply the installer with the [default] value)</p>
<p>Agavi should now be setup for your project. View it in your browser to verify.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/10/agavi-auf-xampp-und-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
