<?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: ZF authentication using Doctrine</title>
	<atom:link href="http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/</link>
	<description></description>
	<lastBuildDate>Tue, 03 Aug 2010 13:49:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim Li</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-44</link>
		<dc:creator>Jim Li</dc:creator>
		<pubDate>Tue, 02 Feb 2010 00:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-44</guid>
		<description>@Martín I just tested the sample app downloaded from ZendCasts. The login identity does NOT persist when I make a redirect to a different controller. However I did not get the error messages you are getting. btw, if you are interested in my solution, you might want to look at the followup post to this one, I did some refactoring to move the auth logic into a service class</description>
		<content:encoded><![CDATA[@Martín I just tested the sample app downloaded from ZendCasts. The login identity does NOT persist when I make a redirect to a different controller. However I did not get the error messages you are getting. btw, if you are interested in my solution, you might want to look at the followup post to this one, I did some refactoring to move the auth logic into a service class]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Li</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-42</link>
		<dc:creator>Jim Li</dc:creator>
		<pubDate>Mon, 01 Feb 2010 22:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-42</guid>
		<description>@Martín I&#039;ve not tested with Jon&#039;s approach. The reason I like using the ZendX library is that when the integration between ZF and Doctrine becomes mature, there ought to be a dedicated auth adapter developed for Doctrine, just like the adapter for ZendDb. In that case, I&#039;m sort of future proof. I can just replug the adapter with whatever, without having to worry about the details. I&#039;ll give the Zendcasts implementation a try later today and let you know if I have the same issue as you do.</description>
		<content:encoded><![CDATA[@Martín I&#8217;ve not tested with Jon&#8217;s approach. The reason I like using the ZendX library is that when the integration between ZF and Doctrine becomes mature, there ought to be a dedicated auth adapter developed for Doctrine, just like the adapter for ZendDb. In that case, I&#8217;m sort of future proof. I can just replug the adapter with whatever, without having to worry about the details. I&#8217;ll give the Zendcasts implementation a try later today and let you know if I have the same issue as you do.]]></content:encoded>
	</item>
	<item>
		<title>By: Martín</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-40</link>
		<dc:creator>Martín</dc:creator>
		<pubDate>Mon, 01 Feb 2010 16:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-40</guid>
		<description>Hi, I followed Jon&#039;s zend cast tutorial and It was fine but if I redirect to another page instead to use forward in the same controller I get an error like this: end_Session::start() – /opt/lampp/htdocs/library_1.9/Zend/Loader.php(Line:164): Error #2 fopen(/opt/lampp/htdocs/transpanish.biz/application/models/AdministradorTable.php) [function.fopen]: failed to open stream: No existe el fichero ó directorio Array 
The error is not clear and checking all I discovered that Zend_Auth not maintain data across the pages, when you redirect to another page you can&#039;t check if the user is logon, Zend_Auth loose their data. I couldn&#039;t solve this so I use your approach and it works. I like more this approach because it &#039;s very similar what I have been using with Zend_Auth_Adapter_DbTable. Do you have the same error using Jon&#039;s approach ? Do you know how to storage Zend_Auth data using Jon&#039;s approach ? Thank you.</description>
		<content:encoded><![CDATA[Hi, I followed Jon&#8217;s zend cast tutorial and It was fine but if I redirect to another page instead to use forward in the same controller I get an error like this: end_Session::start() – /opt/lampp/htdocs/library_1.9/Zend/Loader.php(Line:164): Error #2 fopen(/opt/lampp/htdocs/transpanish.biz/application/models/AdministradorTable.php) [function.fopen]: failed to open stream: No existe el fichero ó directorio Array <br />
The error is not clear and checking all I discovered that Zend_Auth not maintain data across the pages, when you redirect to another page you can&#8217;t check if the user is logon, Zend_Auth loose their data. I couldn&#8217;t solve this so I use your approach and it works. I like more this approach because it &#8217;s very similar what I have been using with Zend_Auth_Adapter_DbTable. Do you have the same error using Jon&#8217;s approach ? Do you know how to storage Zend_Auth data using Jon&#8217;s approach ? Thank you.]]></content:encoded>
	</item>
	<item>
		<title>By: Authentication Service &#187; elink media blog</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-28</link>
		<dc:creator>Authentication Service &#187; elink media blog</dc:creator>
		<pubDate>Tue, 26 Jan 2010 09:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-28</guid>
		<description>[...] 26th, 2010 by Jim Li   Leave a reply &#187;    This is a followup to my previous post &#8220;ZF Authentication using Doctrine&#8220;. After posting my implementation of using a ZendX doctrine auth adapter. I got some feedback [...]</description>
		<content:encoded><![CDATA[[...] 26th, 2010 by Jim Li   Leave a reply &raquo;    This is a followup to my previous post &#8220;ZF Authentication using Doctrine&#8220;. After posting my implementation of using a ZendX doctrine auth adapter. I got some feedback [...]]]></content:encoded>
	</item>
	<item>
		<title>By: abcphp.com</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-27</link>
		<dc:creator>abcphp.com</dc:creator>
		<pubDate>Mon, 25 Jan 2010 11:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-27</guid>
		<description>&lt;strong&gt;ZF Authentication using Doctrine » elink media blog...&lt;/strong&gt;

As one of my everyday morning tasks, I just checked the rss feeds from my news reader. Interesting enough, one of my favourite blog authors, Jon Lebensold from ZendCasts, just published a new post on “Writing a Zend_Auth_Adapter with Doctrine“....</description>
		<content:encoded><![CDATA[<strong>ZF Authentication using Doctrine » elink media blog&#8230;</strong><br />
<br />
As one of my everyday morning tasks, I just checked the rss feeds from my news reader. Interesting enough, one of my favourite blog authors, Jon Lebensold from ZendCasts, just published a new post on “Writing a Zend_Auth_Adapter with Doctrine“&#8230;.]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention ZF Authentication using Doctrine » elink media blog -- Topsy.com</title>
		<link>http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/comment-page-1/#comment-26</link>
		<dc:creator>Tweets that mention ZF Authentication using Doctrine » elink media blog -- Topsy.com</dc:creator>
		<pubDate>Mon, 25 Jan 2010 10:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elinkmedia.net.au/?p=131#comment-26</guid>
		<description>[...] This post was mentioned on Twitter by Jim Li, Aleksandras S. Aleksandras S said: ZendX_Doctrine_Auth_Adapter so simple and powerful: http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/ [...]</description>
		<content:encoded><![CDATA[[...] This post was mentioned on Twitter by Jim Li, Aleksandras S. Aleksandras S said: ZendX_Doctrine_Auth_Adapter so simple and powerful: <a href="http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/" rel="nofollow">http://blog.elinkmedia.net.au/2010/01/24/zf-authentication-using-doctrine/</a> [...]]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->