<?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: Zend Framework 1.8 Workshop</title>
	<atom:link href="http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193</link>
	<description>Programming your life and the net, one day at a time</description>
	<lastBuildDate>Mon, 02 Aug 2010 10:02:46 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Behrang</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-10247</link>
		<dc:creator>Behrang</dc:creator>
		<pubDate>Wed, 26 May 2010 06:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-10247</guid>
		<description>Dear Nick
With your help my problem solved that wasted two days of my time .
Tanks
Behrang</description>
		<content:encoded><![CDATA[<p>Dear Nick<br />
With your help my problem solved that wasted two days of my time .<br />
Tanks<br />
Behrang</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-10232</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 25 May 2010 08:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-10232</guid>
		<description>Hi Behrang,

you should NOT rename the filename IndexController.php in the admin module, BUT rename the class name inside this file from class IndexController to class Admin_IndexController

Admin_ is a namespace specifically used for classes INSIDE the admin module directory.

Friendly greetings,
Nick</description>
		<content:encoded><![CDATA[<p>Hi Behrang,</p>
<p>you should NOT rename the filename IndexController.php in the admin module, BUT rename the class name inside this file from class IndexController to class Admin_IndexController</p>
<p>Admin_ is a namespace specifically used for classes INSIDE the admin module directory.</p>
<p>Friendly greetings,<br />
Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Behrang</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-10212</link>
		<dc:creator>Behrang</dc:creator>
		<pubDate>Mon, 24 May 2010 07:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-10212</guid>
		<description>First thanks for your helpful tutorial,
second when I go to http://localhost/myprogect/admin I get this error:
Message: Invalid controller specified (index) 
what you think about it? I&#039;m using zf 1.9 create successfully admin module but when I go to admin module I found IndexController.php renamed it to Admin_IndexController.php as you say
another thing is in my .zfproject.xml I have :

        
          
          
          
            
              
            
          
          
          
          
            
              
                
              
            
            
            
          
        
      
maybe help!</description>
		<content:encoded><![CDATA[<p>First thanks for your helpful tutorial,<br />
second when I go to <a href="http://localhost/myprogect/admin" rel="nofollow">http://localhost/myprogect/admin</a> I get this error:<br />
Message: Invalid controller specified (index)<br />
what you think about it? I&#8217;m using zf 1.9 create successfully admin module but when I go to admin module I found IndexController.php renamed it to Admin_IndexController.php as you say<br />
another thing is in my .zfproject.xml I have :</p>
<p>maybe help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thatch</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4178</link>
		<dc:creator>thatch</dc:creator>
		<pubDate>Thu, 23 Jul 2009 11:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4178</guid>
		<description>Hi Again,

Just noticed on slide #36

$users-&gt;update($username, $pwd, $firstname);

should be 

$users-&gt;update($id,$username, $pwd, $firstname);</description>
		<content:encoded><![CDATA[<p>Hi Again,</p>
<p>Just noticed on slide #36</p>
<p>$users-&gt;update($username, $pwd, $firstname);</p>
<p>should be </p>
<p>$users-&gt;update($id,$username, $pwd, $firstname);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thatch</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4169</link>
		<dc:creator>thatch</dc:creator>
		<pubDate>Wed, 22 Jul 2009 16:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4169</guid>
		<description>Hi There, 

I&#039;ve noticed a problem that stems from slide #26 when issuing the following commands via zf:

$ zf create action add index 1 admin
$ zf create action edit index 1 admin
$ zf create action delete index 1 admin

I am getting the following error:
Fatal error: Call to a member function search() on a non-object in C:\wamp\library\Zend\Tool\Project\Provider\Action.php on line 92

I have googled this and came to the following bug on zend&#039;s bugtracker:

http://framework.zend.com/issues/browse/ZF-6585

however there is no fix.

Any suggestions?
Thatch</description>
		<content:encoded><![CDATA[<p>Hi There, </p>
<p>I&#8217;ve noticed a problem that stems from slide #26 when issuing the following commands via zf:</p>
<p>$ zf create action add index 1 admin<br />
$ zf create action edit index 1 admin<br />
$ zf create action delete index 1 admin</p>
<p>I am getting the following error:<br />
Fatal error: Call to a member function search() on a non-object in C:\wamp\library\Zend\Tool\Project\Provider\Action.php on line 92</p>
<p>I have googled this and came to the following bug on zend&#8217;s bugtracker:</p>
<p><a href="http://framework.zend.com/issues/browse/ZF-6585" rel="nofollow">http://framework.zend.com/issues/browse/ZF-6585</a></p>
<p>however there is no fix.</p>
<p>Any suggestions?<br />
Thatch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4054</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 12 Jul 2009 11:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4054</guid>
		<description>Rewriting for every module is not necessary. Every module has access to the models of others. But indeed it would be best to put it on another place. Remember these are slides that should be accompanied with explanations. During the workshops I elaborate deeper into the issue. Without the explanations you will have to do some thinking on your own. And it seems you do that. GREAT! Keep up the good work.

Nick
Nick</description>
		<content:encoded><![CDATA[<p>Rewriting for every module is not necessary. Every module has access to the models of others. But indeed it would be best to put it on another place. Remember these are slides that should be accompanied with explanations. During the workshops I elaborate deeper into the issue. Without the explanations you will have to do some thinking on your own. And it seems you do that. GREAT! Keep up the good work.</p>
<p>Nick<br />
Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abadaba</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4051</link>
		<dc:creator>abadaba</dc:creator>
		<pubDate>Sat, 11 Jul 2009 23:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4051</guid>
		<description>Looking forward to it...
I have one question.  You created the UserDB model and DAO under the admin module.  Wouldn&#039;t it be more reusable if you put it somewhere where both the Default and Admin modules can access it so that you don&#039;t have to re-write it for every module?  Maybe I&#039;m confused on this...
Thanks...</description>
		<content:encoded><![CDATA[<p>Looking forward to it&#8230;<br />
I have one question.  You created the UserDB model and DAO under the admin module.  Wouldn&#8217;t it be more reusable if you put it somewhere where both the Default and Admin modules can access it so that you don&#8217;t have to re-write it for every module?  Maybe I&#8217;m confused on this&#8230;<br />
Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4050</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 11 Jul 2009 17:16:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4050</guid>
		<description>thx for the feedback. The next one is in progress.
Nick</description>
		<content:encoded><![CDATA[<p>thx for the feedback. The next one is in progress.<br />
Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abadaba</title>
		<link>http://blog.nickbelhomme.com/php/zend-framework-1-8-workshop_193/comment-page-1#comment-4041</link>
		<dc:creator>abadaba</dc:creator>
		<pubDate>Sat, 11 Jul 2009 06:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickbelhomme.com/?p=193#comment-4041</guid>
		<description>This is a great tutorial.  I like the way you seperated the db actions into a DAO.  When can we expect your next tutorial regarding ACL and the logged in members module? :) Thanks!</description>
		<content:encoded><![CDATA[<p>This is a great tutorial.  I like the way you seperated the db actions into a DAO.  When can we expect your next tutorial regarding ACL and the logged in members module? <img src='http://blog.nickbelhomme.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
