<?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>Nanji &#187; Codeigniter</title>
	<atom:link href="http://nanji.de/blog/category/dev/codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://nanji.de/blog</link>
	<description>Seo, Sem, Usability, Entwicklung, PHP, VoIP, TTS</description>
	<lastBuildDate>Thu, 14 Jan 2010 14:49:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Codeigniter per Konsole bzw. php-cli</title>
		<link>http://nanji.de/blog/dev/codeigniter/codeigniter-per-konsole-bzw-php-cli/</link>
		<comments>http://nanji.de/blog/dev/codeigniter/codeigniter-per-konsole-bzw-php-cli/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:51:29 +0000</pubDate>
		<dc:creator>huzzel</dc:creator>
				<category><![CDATA[Codeigniter]]></category>

		<guid isPermaLink="false">http://nanji.de/blog/?p=112</guid>
		<description><![CDATA[Hab hier ein cooles Script gefunden um CI auf der Konsole auszuführen.
http://benjaminmock.de/codeigniter-auf-der-konsole-kommandozeile/
]]></description>
			<content:encoded><![CDATA[<p>Hab hier ein cooles Script gefunden um CI auf der Konsole auszuführen.</p>
<p><a href="http://benjaminmock.de/codeigniter-auf-der-konsole-kommandozeile/">http://benjaminmock.de/codeigniter-auf-der-konsole-kommandozeile/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanji.de/blog/dev/codeigniter/codeigniter-per-konsole-bzw-php-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter mod_rewrite</title>
		<link>http://nanji.de/blog/dev/codeigniter/codeigniter-mod_rewrite/</link>
		<comments>http://nanji.de/blog/dev/codeigniter/codeigniter-mod_rewrite/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 10:56:42 +0000</pubDate>
		<dc:creator>huzzel</dc:creator>
				<category><![CDATA[Codeigniter]]></category>

		<guid isPermaLink="false">http://nanji.de/blog/?p=109</guid>
		<description><![CDATA[Hier ist der Src für die .htaccess diese legt man einfach ins Stammverzeichnis.
Wenn CI z.b. unter http://localhost/codeigniter liegt muss man die RewriteBase anpassen und statt
RewriteBase / ändern in
RewriteBase /codeigniter/ 


    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally [...]]]></description>
			<content:encoded><![CDATA[<p>Hier ist der Src für die .htaccess diese legt man einfach ins Stammverzeichnis.<br />
Wenn CI z.b. unter http://localhost/codeigniter liegt muss man die RewriteBase anpassen und statt<br />
RewriteBase / ändern in<br />
RewriteBase /codeigniter/ </p>
<pre>
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>
</pre>
<p>Jetzt muss man folgende Änderungen in der system/application/config/config.php vornehmen</p>
<pre>
#$config['index_page'] = "index.php";
$config['index_page'] = "";
...
#$config['rewrite_short_tags'] = FALSE;
$config['rewrite_short_tags'] = TRUE;
</pre>
<p>Das wars</p>
]]></content:encoded>
			<wfw:commentRss>http://nanji.de/blog/dev/codeigniter/codeigniter-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatische config[base_url] bei Codeigniter</title>
		<link>http://nanji.de/blog/dev/codeigniter/automatische-configbase_url-bei-codeigniter/</link>
		<comments>http://nanji.de/blog/dev/codeigniter/automatische-configbase_url-bei-codeigniter/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 10:48:49 +0000</pubDate>
		<dc:creator>huzzel</dc:creator>
				<category><![CDATA[Codeigniter]]></category>

		<guid isPermaLink="false">http://nanji.de/blog/?p=105</guid>
		<description><![CDATA[Mit diesem Snippet konfiguriert sich die $config['base_url'] automatisch

$config['base_url'] = "http://".$_SERVER['HTTP_HOST'] . preg_replace('@/+$@','',dirname($_SERVER['SCRIPT_NAME'])).'/';

Quelle: http://www.includemedia.de/de/magazin/codeigniter-erste-schritte/
]]></description>
			<content:encoded><![CDATA[<p>Mit diesem Snippet konfiguriert sich die $config['base_url'] automatisch</p>
<pre>
$config['base_url'] = "http://".$_SERVER['HTTP_HOST'] . preg_replace('@/+$@','',dirname($_SERVER['SCRIPT_NAME'])).'/';
</pre>
<p>Quelle:<a href="http://www.includemedia.de/de/magazin/codeigniter-erste-schritte/"> http://www.includemedia.de/de/magazin/codeigniter-erste-schritte/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanji.de/blog/dev/codeigniter/automatische-configbase_url-bei-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
