<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Blaze 0.90 Login Problems - Fixed</title>
	<atom:link href="http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/feed/" rel="self" type="application/rss+xml" />
	<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/</link>
	<description>The CodeIgniter CMS</description>
	<pubDate>Fri, 21 Nov 2008 08:44:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Stanislav Nedelchev</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-214</link>
		<dc:creator>Stanislav Nedelchev</dc:creator>
		<pubDate>Wed, 26 Mar 2008 16:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-214</guid>
		<description>And here is my 50 cents I find some trouble installing Blaze on my web hosting.
I receive error can load model page but after I switch to PHP5 now is OK.
But there was problem when I try to access blog or admin page.
Here is my modification of .htaccess notice ? after index.php this is the key.
I also read that adding ? after index.php solve problems with code igniter and dreamhosting. Here is .htaccess

#This is optional
AddHandler x-httpd-php5 .php
Options Indexes FollowSymLinks


RewriteEngine On
RewriteBase /

# Must do this before a trailing slash gets put on it
RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]
RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]

# Add Trailing Slash (Force it!) - It looks cool :)

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://yourdomain.com/$1/ [R=301,L]

# Admin 'dashboard'
RewriteRule ^admin$ index.php?/admin [L]
RewriteRule ^admin/$ index.php?/admin/ [L]

# Admin functions within Admin module and controller
RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)$ index.php?/admin/$1 [L]
RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)/(.*)$ index.php?/admin/$1/$2 [L]
RewriteRule ^admin/nav_(.*)$ index.php?/admin/nav_$1 [L]

# All others, push to the module in question
RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]
RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]



# Any request were the file or directory doesn't exist...
# Push to CI

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]</description>
		<content:encoded><![CDATA[<p>And here is my 50 cents I find some trouble installing Blaze on my web hosting.<br />
I receive error can load model page but after I switch to PHP5 now is OK.<br />
But there was problem when I try to access blog or admin page.<br />
Here is my modification of .htaccess notice ? after index.php this is the key.<br />
I also read that adding ? after index.php solve problems with code igniter and dreamhosting. Here is .htaccess</p>
<p>#This is optional<br />
AddHandler x-httpd-php5 .php<br />
Options Indexes FollowSymLinks</p>
<p>RewriteEngine On<br />
RewriteBase /</p>
<p># Must do this before a trailing slash gets put on it<br />
RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]<br />
RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]</p>
<p># Add Trailing Slash (Force it!) - It looks cool <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_URI} !(.*)/$<br />
RewriteRule ^(.*)$ <a href="http://yourdomain.com/1/" rel="nofollow">http://yourdomain.com/1/</a> [R=301,L]</p>
<p># Admin &#8216;dashboard&#8217;<br />
RewriteRule ^admin$ index.php?/admin [L]<br />
RewriteRule ^admin/$ index.php?/admin/ [L]</p>
<p># Admin functions within Admin module and controller<br />
RewriteRule ^admin/(navigation|users|settings|login|logout)$ index.php?/admin/$1 [L]<br />
RewriteRule ^admin/(navigation|users|settings|login|logout)/(.*)$ index.php?/admin/$1/$2 [L]<br />
RewriteRule ^admin/nav_(.*)$ index.php?/admin/nav_$1 [L]</p>
<p># All others, push to the module in question<br />
RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]<br />
RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]</p>
<p># Any request were the file or directory doesn&#8217;t exist&#8230;<br />
# Push to CI</p>
<p>RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ index.php?/$1 [L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Aitken</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-204</link>
		<dc:creator>Robert Aitken</dc:creator>
		<pubDate>Sat, 22 Mar 2008 04:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-204</guid>
		<description>Works well after switching PHP5 on.

Nice start, Elliot. EE lite!</description>
		<content:encoded><![CDATA[<p>Works well after switching PHP5 on.</p>
<p>Nice start, Elliot. EE lite!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dannyded</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-200</link>
		<dc:creator>dannyded</dc:creator>
		<pubDate>Wed, 19 Mar 2008 18:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-200</guid>
		<description>wow.. it really looks great.. 
Hope to see new releases soon..</description>
		<content:encoded><![CDATA[<p>wow.. it really looks great..<br />
Hope to see new releases soon..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-197</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 18 Mar 2008 15:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-197</guid>
		<description>[Praise] First off, well done with the build thus far!  Definetly a stellar start to what I believe will be an excellent CI CMS [/Praise]

As far as issues, I can access each page individual by re-writing the uri, however when I click successive links, multiple trailing slashes are added in place of the index, breaking an second page of its content and styles.  

Any thoughts? I couldn't find the problem and I imagine it is an htaccess issue or perhaps my php configuration, but I was wondering if anyone else experienced a similar issue?</description>
		<content:encoded><![CDATA[<p>[Praise] First off, well done with the build thus far!  Definetly a stellar start to what I believe will be an excellent CI CMS [/Praise]</p>
<p>As far as issues, I can access each page individual by re-writing the uri, however when I click successive links, multiple trailing slashes are added in place of the index, breaking an second page of its content and styles.  </p>
<p>Any thoughts? I couldn&#8217;t find the problem and I imagine it is an htaccess issue or perhaps my php configuration, but I was wondering if anyone else experienced a similar issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-196</link>
		<dc:creator>Kim</dc:creator>
		<pubDate>Tue, 18 Mar 2008 13:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-196</guid>
		<description>Maybe to clarify: I added the "system/" before "application/" in both lines.</description>
		<content:encoded><![CDATA[<p>Maybe to clarify: I added the &#8220;system/&#8221; before &#8220;application/&#8221; in both lines.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-195</link>
		<dc:creator>Kim</dc:creator>
		<pubDate>Tue, 18 Mar 2008 13:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-195</guid>
		<description>Hi guys, 

I've found a little mistake in the .htaccess file. Seems someone has forgotten a directory in the first directive:

# Must do this before a trailing slash gets put on it
	RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]
	RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]


Should be:

# Must do this before a trailing slash gets put on it
	RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ system/application/views/themes/$1/static/$2 [L]
	RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ system/application/views/themes_admin/$1/static/$2 [L]



Otherwise the Theme resources won't be properly loaded and you get a freaky white -nonetheless working- Blaze frontpage :)

Glad to be of service! Greets n kudos</description>
		<content:encoded><![CDATA[<p>Hi guys, </p>
<p>I&#8217;ve found a little mistake in the .htaccess file. Seems someone has forgotten a directory in the first directive:</p>
<p># Must do this before a trailing slash gets put on it<br />
	RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]<br />
	RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]</p>
<p>Should be:</p>
<p># Must do this before a trailing slash gets put on it<br />
	RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ system/application/views/themes/$1/static/$2 [L]<br />
	RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ system/application/views/themes_admin/$1/static/$2 [L]</p>
<p>Otherwise the Theme resources won&#8217;t be properly loaded and you get a freaky white -nonetheless working- Blaze frontpage <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Glad to be of service! Greets n kudos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: :)</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-191</link>
		<dc:creator>:)</dc:creator>
		<pubDate>Mon, 17 Mar 2008 19:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-191</guid>
		<description>We need forum ;]</description>
		<content:encoded><![CDATA[<p>We need forum ;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miguel</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-175</link>
		<dc:creator>miguel</dc:creator>
		<pubDate>Fri, 14 Mar 2008 21:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-175</guid>
		<description>i wanna a Multi-language website. how i can do with Blaze?</description>
		<content:encoded><![CDATA[<p>i wanna a Multi-language website. how i can do with Blaze?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-150</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Wed, 12 Mar 2008 09:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-150</guid>
		<description>If you're running PHP as CGI and not as an apache module, you should try adding "cgi.fix_pathinfo = 0" to your php.ini if you're getting the error "no input file specified" mentioned above.
That works for me and I'm happy that I can use blaze now!</description>
		<content:encoded><![CDATA[<p>If you&#8217;re running PHP as CGI and not as an apache module, you should try adding &#8220;cgi.fix_pathinfo = 0&#8243; to your php.ini if you&#8217;re getting the error &#8220;no input file specified&#8221; mentioned above.<br />
That works for me and I&#8217;m happy that I can use blaze now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias</title>
		<link>http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-148</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Wed, 12 Mar 2008 09:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/03/10/blaze-090-login-problems-fixed/#comment-148</guid>
		<description>Sorry, forgot to tell you that I'm using PHP5 von Apache as a CGI. Maybe this helps.</description>
		<content:encoded><![CDATA[<p>Sorry, forgot to tell you that I&#8217;m using PHP5 von Apache as a CGI. Maybe this helps.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
