<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CodeIgniter and Doctrine from scratch Day 3 – User Signup Form</title>
	<atom:link href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form</link>
	<description>PHP, JS, CSS, jQuery, CodeIgniter, Doctrine</description>
	<lastBuildDate>Sat, 04 Sep 2010 17:13:31 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Davan</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-14114</link>
		<dc:creator>Davan</dc:creator>
		<pubDate>Tue, 24 Aug 2010 18:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-14114</guid>
		<description>Hey just in case any one was having the same problem as me. the issue was my model and controller had the same name. As a result another instance of my controller was loaded and not my model .

FYI</description>
		<content:encoded><![CDATA[<p>Hey just in case any one was having the same problem as me. the issue was my model and controller had the same name. As a result another instance of my controller was loaded and not my model .</p>
<p>FYI</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davan</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-13345</link>
		<dc:creator>Davan</dc:creator>
		<pubDate>Tue, 17 Aug 2010 14:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-13345</guid>
		<description>Burak,

I have been building an application using your wonderful tutorial. Let me pause here to thank you for the wonderful work you have done and to thank you for your generosity and assistance. 

With my application I am running into a problem with all my controllers using models. When the model is being instantiated. for [eg. $u = new User();] I get the following error:

A PHP Error was encountered

Severity: Notice

Message: Undefined property: Guardian::$users

Filename: libraries/Loader.php

Line Number: 1035


Fatal error: Call to a member function _assign_libraries() on a non-object in C:\wamp\www\ci\system\libraries\Loader.php on line 1035

Where could I be going wrong. Since I was using the code I downloaded from you as a base do you have any idea where I may have missed a change.  the reference to a users object seems like a hold-over and I cant find where. 

Here is the code for the guardian model 
hasColumn(&#039;first_name&#039;,&#039;varchar&#039;,20);
		$this-&gt;hasColumn(&#039;surname&#039;,&#039;varchar&#039;,20);
		$this-&gt;hasColumn(&#039;home_phone&#039;,&#039;varchar&#039;,14);
		$this-&gt;hasColumn(&#039;mobile_phone&#039;,&#039;varchar&#039;,14);
		$this-&gt;hasColumn(&#039;office_phone&#039;,&#039;varchar&#039;,14);
		$this-&gt;hasColumn(&#039;email_address&#039;,&#039;varchar&#039;,50);
		$this-&gt;hasColumn(&#039;company&#039;,&#039;varchar&#039;,40);
		$this-&gt;hasColumn(&#039;occupation&#039;,&#039;varchar&#039;,40);
		$this-&gt;hasColumn(&#039;additional_skills&#039;,&#039;varchar&#039;,40);
		$this-&gt;hasColumn(&#039;parent_of&#039;,&#039;integer&#039;,10);
		$this-&gt;hasColumn(&#039;relationship&#039;,&#039;enum&#039;,array(&#039;values&#039;=&gt;array(&#039;Father&#039;,&#039;Mother&#039;,&#039;Guardian&#039;)));
	}

	public function setUp()
	{
	$this-&gt;hasMany(&#039;Student&#039;,array(&#039;local&#039;=&gt;&#039;parent_of&#039;,&#039;foreign&#039;=&gt;&#039;id&#039;));
	$this-&gt;setTableName(&#039;Guardian&#039;);
	$this-&gt;actAs(&#039;TimeStampable&#039;);
	}
}

Here is the guardian controller.
load-&gt;helper(array(&#039;form&#039;,&#039;file&#039;,&#039;url&#039;));
		$this-&gt;load-&gt;library(&#039;form_validation&#039;);
	}
	public function index()
	{
	$this-&gt;load-&gt;view(&#039;guardian_form&#039;);
	}
	
	public function add()
	{
	$this-&gt;load-&gt;view(&#039;guardian_form&#039;);
	}
	
	public function submit()
	{
	$g = new Guardian();
	$g-&gt;first_name=$this-&gt;input-&gt;post(&#039;first_name&#039;);
	$g-&gt;first_name=$this-&gt;input-&gt;post(&#039;first_name&#039;);
	$g-&gt;surname=$this-&gt;input-&gt;post(&#039;surname&#039;);
	$g-&gt;home_phone=$this-&gt;input-&gt;post(&#039;home_phone&#039;);
	$g-&gt;office_phone=$this-&gt;input-&gt;post(&#039;office_phone&#039;);
	$g-&gt;mobile_phone=$this-&gt;input-&gt;post(&#039;mobile_phone&#039;);
	$g-&gt;email_address=$this-&gt;input-&gt;post(&#039;email_address&#039;);
	$g-&gt;company=$this-&gt;input-&gt;post(&#039;company&#039;);
	$g-&gt;occupation=$this-&gt;input-&gt;post(&#039;occupation&#039;);
	$g-&gt;additional_skills=$this-&gt;input-&gt;post(&#039;additional_skills&#039;);
	$g-&gt;parent_of=$this-&gt;input-&gt;post(&#039;parent_of&#039;);
	$g-&gt;relationship=$this-&gt;input-&gt;post(&#039;relationship&#039;);
	$g-&gt;save();
	}
	
}

where may I be going wrong? Please help. I have been stressing over this a few days now. I know it must be something simple. Thank in advance for your help.</description>
		<content:encoded><![CDATA[<p>Burak,</p>
<p>I have been building an application using your wonderful tutorial. Let me pause here to thank you for the wonderful work you have done and to thank you for your generosity and assistance. </p>
<p>With my application I am running into a problem with all my controllers using models. When the model is being instantiated. for [eg. $u = new User();] I get the following error:</p>
<p>A PHP Error was encountered</p>
<p>Severity: Notice</p>
<p>Message: Undefined property: Guardian::$users</p>
<p>Filename: libraries/Loader.php</p>
<p>Line Number: 1035</p>
<p>Fatal error: Call to a member function _assign_libraries() on a non-object in C:\wamp\www\ci\system\libraries\Loader.php on line 1035</p>
<p>Where could I be going wrong. Since I was using the code I downloaded from you as a base do you have any idea where I may have missed a change.  the reference to a users object seems like a hold-over and I cant find where. </p>
<p>Here is the code for the guardian model<br />
hasColumn(&#8217;first_name&#8217;,'varchar&#8217;,20);<br />
		$this-&gt;hasColumn(&#8217;surname&#8217;,'varchar&#8217;,20);<br />
		$this-&gt;hasColumn(&#8217;home_phone&#8217;,'varchar&#8217;,14);<br />
		$this-&gt;hasColumn(&#8217;mobile_phone&#8217;,'varchar&#8217;,14);<br />
		$this-&gt;hasColumn(&#8217;office_phone&#8217;,'varchar&#8217;,14);<br />
		$this-&gt;hasColumn(&#8217;email_address&#8217;,'varchar&#8217;,50);<br />
		$this-&gt;hasColumn(&#8217;company&#8217;,'varchar&#8217;,40);<br />
		$this-&gt;hasColumn(&#8217;occupation&#8217;,'varchar&#8217;,40);<br />
		$this-&gt;hasColumn(&#8217;additional_skills&#8217;,'varchar&#8217;,40);<br />
		$this-&gt;hasColumn(&#8217;parent_of&#8217;,'integer&#8217;,10);<br />
		$this-&gt;hasColumn(&#8217;relationship&#8217;,'enum&#8217;,array(&#8217;values&#8217;=&gt;array(&#8217;Father&#8217;,'Mother&#8217;,'Guardian&#8217;)));<br />
	}</p>
<p>	public function setUp()<br />
	{<br />
	$this-&gt;hasMany(&#8217;Student&#8217;,array(&#8217;local&#8217;=&gt;&#8217;parent_of&#8217;,'foreign&#8217;=&gt;&#8217;id&#8217;));<br />
	$this-&gt;setTableName(&#8217;Guardian&#8217;);<br />
	$this-&gt;actAs(&#8217;TimeStampable&#8217;);<br />
	}<br />
}</p>
<p>Here is the guardian controller.<br />
load-&gt;helper(array(&#8217;form&#8217;,'file&#8217;,'url&#8217;));<br />
		$this-&gt;load-&gt;library(&#8217;form_validation&#8217;);<br />
	}<br />
	public function index()<br />
	{<br />
	$this-&gt;load-&gt;view(&#8217;guardian_form&#8217;);<br />
	}</p>
<p>	public function add()<br />
	{<br />
	$this-&gt;load-&gt;view(&#8217;guardian_form&#8217;);<br />
	}</p>
<p>	public function submit()<br />
	{<br />
	$g = new Guardian();<br />
	$g-&gt;first_name=$this-&gt;input-&gt;post(&#8217;first_name&#8217;);<br />
	$g-&gt;first_name=$this-&gt;input-&gt;post(&#8217;first_name&#8217;);<br />
	$g-&gt;surname=$this-&gt;input-&gt;post(&#8217;surname&#8217;);<br />
	$g-&gt;home_phone=$this-&gt;input-&gt;post(&#8217;home_phone&#8217;);<br />
	$g-&gt;office_phone=$this-&gt;input-&gt;post(&#8217;office_phone&#8217;);<br />
	$g-&gt;mobile_phone=$this-&gt;input-&gt;post(&#8217;mobile_phone&#8217;);<br />
	$g-&gt;email_address=$this-&gt;input-&gt;post(&#8217;email_address&#8217;);<br />
	$g-&gt;company=$this-&gt;input-&gt;post(&#8217;company&#8217;);<br />
	$g-&gt;occupation=$this-&gt;input-&gt;post(&#8217;occupation&#8217;);<br />
	$g-&gt;additional_skills=$this-&gt;input-&gt;post(&#8217;additional_skills&#8217;);<br />
	$g-&gt;parent_of=$this-&gt;input-&gt;post(&#8217;parent_of&#8217;);<br />
	$g-&gt;relationship=$this-&gt;input-&gt;post(&#8217;relationship&#8217;);<br />
	$g-&gt;save();<br />
	}</p>
<p>}</p>
<p>where may I be going wrong? Please help. I have been stressing over this a few days now. I know it must be something simple. Thank in advance for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rómulo</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-12669</link>
		<dc:creator>Rómulo</dc:creator>
		<pubDate>Thu, 12 Aug 2010 13:20:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-12669</guid>
		<description>You are the man!
Thanks you so much for sharing your knowledge with the world!
Fantastic work!
greetings!</description>
		<content:encoded><![CDATA[<p>You are the man!<br />
Thanks you so much for sharing your knowledge with the world!<br />
Fantastic work!<br />
greetings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giuseppe</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-12152</link>
		<dc:creator>Giuseppe</dc:creator>
		<pubDate>Mon, 09 Aug 2010 10:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-12152</guid>
		<description>Hi, Burak! Thanks for this guide!
I&#039;ve a question, how can I change the error message of the required validation (The X field is required.)? I would like to rewrite it in my language... :)</description>
		<content:encoded><![CDATA[<p>Hi, Burak! Thanks for this guide!<br />
I&#8217;ve a question, how can I change the error message of the required validation (The X field is required.)? I would like to rewrite it in my language&#8230; <img src='http://www.phpandstuff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-11320</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Tue, 03 Aug 2010 03:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-11320</guid>
		<description>What if you don&#039;t want your default id to be id?

Doctrine_Manager::getInstance()-&gt;setAttribute(
3	    Doctrine::ATTR_DEFAULT_IDENTIFIER_OPTIONS,
4	    array(&#039;name&#039; =&gt; &#039;id&#039;, &#039;type&#039; =&gt; &#039;integer&#039;, &#039;length&#039; =&gt; 4));

For each table I have I use a different id.  for example if my table is login it is login_id.

Any help would be great.  Thanks!</description>
		<content:encoded><![CDATA[<p>What if you don&#8217;t want your default id to be id?</p>
<p>Doctrine_Manager::getInstance()-&gt;setAttribute(<br />
3	    Doctrine::ATTR_DEFAULT_IDENTIFIER_OPTIONS,<br />
4	    array(&#8217;name&#8217; =&gt; &#8216;id&#8217;, &#8216;type&#8217; =&gt; &#8216;integer&#8217;, &#8216;length&#8217; =&gt; 4));</p>
<p>For each table I have I use a different id.  for example if my table is login it is login_id.</p>
<p>Any help would be great.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Inoa</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-7206</link>
		<dc:creator>Alex Inoa</dc:creator>
		<pubDate>Fri, 25 Jun 2010 16:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-7206</guid>
		<description>Burak, God bless you.

This tutorial is awsome, thanks for share such interesting information.

Be able to teach to others it is a Gift and a great talent.

I am looking forward the next days of the series. I hope you can make more and more;)</description>
		<content:encoded><![CDATA[<p>Burak, God bless you.</p>
<p>This tutorial is awsome, thanks for share such interesting information.</p>
<p>Be able to teach to others it is a Gift and a great talent.</p>
<p>I am looking forward the next days of the series. I hope you can make more and more;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Jackson</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-7056</link>
		<dc:creator>Nathan Jackson</dc:creator>
		<pubDate>Tue, 22 Jun 2010 13:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-7056</guid>
		<description>Nice tutorials, though I don&#039;t like the look of CI&#039;s non OOP format for the form functions.

Thats why i have been trying cakephp, but that seemed to much fluff.</description>
		<content:encoded><![CDATA[<p>Nice tutorials, though I don&#8217;t like the look of CI&#8217;s non OOP format for the form functions.</p>
<p>Thats why i have been trying cakephp, but that seemed to much fluff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cameron</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-7006</link>
		<dc:creator>Cameron</dc:creator>
		<pubDate>Mon, 21 Jun 2010 08:05:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-7006</guid>
		<description>I ran into a little problem in setting up the .htaccess file to get rid of the index.php page. It turns out that the default configuration for the stock apache install on OS X is pretty restrictive, so in order to make it so that the .htaccess file was actually used, I had to edit the httpd.conf file as well as the conf files for users. I&#039;m no .htaccess wiz, so I just decided to make a little note of it down here in case anyone runs into the same problem on a MAMP-type development setup to make sure that the AllowOverride directive is what it is supposed to be in both of those places. Also, a little typo, in that same section of this tutorial, the config file is referenced as /system/application/config.php, when it is in another directory down (/system/application/config/config.php).

Thank you so much for these wonderful tutorials, they are very well put together. Nice layout, good pace, and great explanations! Keep up the awesome work. Now I have to catch up to day 12!</description>
		<content:encoded><![CDATA[<p>I ran into a little problem in setting up the .htaccess file to get rid of the index.php page. It turns out that the default configuration for the stock apache install on OS X is pretty restrictive, so in order to make it so that the .htaccess file was actually used, I had to edit the httpd.conf file as well as the conf files for users. I&#8217;m no .htaccess wiz, so I just decided to make a little note of it down here in case anyone runs into the same problem on a MAMP-type development setup to make sure that the AllowOverride directive is what it is supposed to be in both of those places. Also, a little typo, in that same section of this tutorial, the config file is referenced as /system/application/config.php, when it is in another directory down (/system/application/config/config.php).</p>
<p>Thank you so much for these wonderful tutorials, they are very well put together. Nice layout, good pace, and great explanations! Keep up the awesome work. Now I have to catch up to day 12!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Haqqi</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-6946</link>
		<dc:creator>Haqqi</dc:creator>
		<pubDate>Sat, 19 Jun 2010 03:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-6946</guid>
		<description>Hi Burak, I have a problem.

Your tutorial is really good. One thing i want to expand is I want to use modular extension such as HMVC or matchbox for CI. The problem is, Doctrine can&#039;t access models which are in modules.

For example, i have created a model in a module. When I call createTableFromModels(), it didn&#039;t include model in the module. What should I do so that Doctrine can know that in each module, there are also models that maybe using Doctrine_Record as superclass..</description>
		<content:encoded><![CDATA[<p>Hi Burak, I have a problem.</p>
<p>Your tutorial is really good. One thing i want to expand is I want to use modular extension such as HMVC or matchbox for CI. The problem is, Doctrine can&#8217;t access models which are in modules.</p>
<p>For example, i have created a model in a module. When I call createTableFromModels(), it didn&#8217;t include model in the module. What should I do so that Doctrine can know that in each module, there are also models that maybe using Doctrine_Record as superclass..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-6917</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 18 Jun 2010 08:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-6917</guid>
		<description>Just wanted to say thanks for this great tutorial ! Very helpful!</description>
		<content:encoded><![CDATA[<p>Just wanted to say thanks for this great tutorial ! Very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiten</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-6895</link>
		<dc:creator>Jiten</dc:creator>
		<pubDate>Thu, 17 Jun 2010 13:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-6895</guid>
		<description>Great tutorial! Burak.. Thanks a Lot..</description>
		<content:encoded><![CDATA[<p>Great tutorial! Burak.. Thanks a Lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark r</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5923</link>
		<dc:creator>mark r</dc:creator>
		<pubDate>Sat, 29 May 2010 22:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5923</guid>
		<description>I ran into a small problem with the tutorial. By accident, I put the MY_Form_validation.php file into system &gt; libraries instead of system &gt; application &gt; libraries... this caused a php error.

Thank you again for these tutorials. I am very grateful for them! :D</description>
		<content:encoded><![CDATA[<p>I ran into a small problem with the tutorial. By accident, I put the MY_Form_validation.php file into system &gt; libraries instead of system &gt; application &gt; libraries&#8230; this caused a php error.</p>
<p>Thank you again for these tutorials. I am very grateful for them! <img src='http://www.phpandstuff.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark r</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5889</link>
		<dc:creator>mark r</dc:creator>
		<pubDate>Sat, 29 May 2010 08:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5889</guid>
		<description>excellent tutorials! thank you very much! 

I am using MAMP and wanted to let you know that the .htaccess trick to make the URL&#039;s cleaner does not work. I found code form this site: http://www.grafikkaos.co.uk/article/81-getting-started-with-codeigniter

This is what I used and it worked for me:

    RewriteEngine on
	RewriteCond $1 !^(index\.php&#124;images&#124;css&#124;js&#124;robots\.txt&#124;favicon\.ico)
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]


    ErrorDocument 404 /ci_doctrine/index.php


Thank you again so much, you are awesome!!</description>
		<content:encoded><![CDATA[<p>excellent tutorials! thank you very much! </p>
<p>I am using MAMP and wanted to let you know that the .htaccess trick to make the URL&#8217;s cleaner does not work. I found code form this site: <a href="http://www.grafikkaos.co.uk/article/81-getting-started-with-codeigniter" rel="nofollow">http://www.grafikkaos.co.uk/article/81-getting-started-with-codeigniter</a></p>
<p>This is what I used and it worked for me:</p>
<p>    RewriteEngine on<br />
	RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)<br />
	RewriteCond %{REQUEST_FILENAME} !-f<br />
	RewriteCond %{REQUEST_FILENAME} !-d<br />
	RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]</p>
<p>    ErrorDocument 404 /ci_doctrine/index.php</p>
<p>Thank you again so much, you are awesome!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5089</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 May 2010 21:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5089</guid>
		<description>...and I found a solution at http://codeigniter.com/forums/viewthread/92609/#730734

Finally got it working. :)</description>
		<content:encoded><![CDATA[<p>&#8230;and I found a solution at <a href="http://codeigniter.com/forums/viewthread/92609/#730734" rel="nofollow">http://codeigniter.com/forums/viewthread/92609/#730734</a></p>
<p>Finally got it working. <img src='http://www.phpandstuff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5088</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 May 2010 21:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5088</guid>
		<description>Or not.  (Gawd, I wish I could edit these posts.)

I went back to the htaccess file recommended in this tutoral, and the styling works (hence the post above) -- but if I try to access any page but the main index, like &quot;login&quot;, I get a blank page that says &quot;No input file specified.&quot;</description>
		<content:encoded><![CDATA[<p>Or not.  (Gawd, I wish I could edit these posts.)</p>
<p>I went back to the htaccess file recommended in this tutoral, and the styling works (hence the post above) &#8212; but if I try to access any page but the main index, like &#8220;login&#8221;, I get a blank page that says &#8220;No input file specified.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5087</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 May 2010 21:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5087</guid>
		<description>Nevermind -- I fixed it!</description>
		<content:encoded><![CDATA[<p>Nevermind &#8212; I fixed it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5086</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 May 2010 21:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5086</guid>
		<description>No dice -- I get a 500 Internal Server Error on every page.</description>
		<content:encoded><![CDATA[<p>No dice &#8212; I get a 500 Internal Server Error on every page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5084</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Sat, 08 May 2010 20:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5084</guid>
		<description>Just add something like this (.*).css in RewriteCond:

RewriteCond $1 !^(index\.php&#124;(*).css)</description>
		<content:encoded><![CDATA[<p>Just add something like this (.*).css in RewriteCond:</p>
<p>RewriteCond $1 !^(index\.php|(*).css)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5048</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 07 May 2010 01:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5048</guid>
		<description>Er.  The css file actually looks like this (I forgot to escape the html):

- – - – - – - – - – - – - –
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;404 Page Not Found&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;

body {
background-color:	#fff;
margin:				40px;

... etc.</description>
		<content:encoded><![CDATA[<p>Er.  The css file actually looks like this (I forgot to escape the html):</p>
<p>- – &#8211; – &#8211; – &#8211; – &#8211; – &#8211; – &#8211; –<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;404 Page Not Found&lt;/title&gt;<br />
&lt;style type=&quot;text/css&quot;&gt;</p>
<p>body {<br />
background-color:	#fff;<br />
margin:				40px;</p>
<p>&#8230; etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form/comment-page-1#comment-5047</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 07 May 2010 01:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpandstuff.com/?p=348#comment-5047</guid>
		<description>Hi -- thanks for the great tutorials!

I&#039;m having a bit of trouble loading the css information.  The pages look unstyled, and if I open the css file in firefox (rather than opening it in a text editor), it&#039;s somehow added a whole bunch of HTML.  Like this:

- - - - - - - - - - - - - - 


404 Page Not Found


body {
background-color:	#fff;
margin: 40px;

... etc.
- - - - - - - - - - - - - - 

I think this has something to do with my htaccess file, which I had to modify &#039;cause of my host (dreamhost).  Here&#039;s the htaccess:

- - - - - - - - - - - - - - 
RewriteEngine On
RewriteCond $1 !^(index\.php)
RewriteRule ^(.+)$ index.php?$1 [L] 
- - - - - - - - - - - - - - 

Any ideas on how to fix this?</description>
		<content:encoded><![CDATA[<p>Hi &#8212; thanks for the great tutorials!</p>
<p>I&#8217;m having a bit of trouble loading the css information.  The pages look unstyled, and if I open the css file in firefox (rather than opening it in a text editor), it&#8217;s somehow added a whole bunch of HTML.  Like this:</p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; </p>
<p>404 Page Not Found</p>
<p>body {<br />
background-color:	#fff;<br />
margin: 40px;</p>
<p>&#8230; etc.<br />
- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; </p>
<p>I think this has something to do with my htaccess file, which I had to modify &#8217;cause of my host (dreamhost).  Here&#8217;s the htaccess:</p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211;<br />
RewriteEngine On<br />
RewriteCond $1 !^(index\.php)<br />
RewriteRule ^(.+)$ index.php?$1 [L]<br />
- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; </p>
<p>Any ideas on how to fix this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
