<?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 for LAMPlights</title>
	<atom:link href="http://www.hermanradtke.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hermanradtke.com/blog</link>
	<description>Personal anecdotes from my experiences using the LAMP stack</description>
	<lastBuildDate>Mon, 30 Aug 2010 07:16:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on More Reliable Authentication in Zend Framework by Herman Radtke</title>
		<link>http://www.hermanradtke.com/blog/more-reliable-authentication-in-zend-framework/comment-page-1/#comment-4533</link>
		<dc:creator>Herman Radtke</dc:creator>
		<pubDate>Mon, 30 Aug 2010 07:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=91#comment-4533</guid>
		<description>I usually put the plugin in my library directory: lib/My/Controller/Plugin/Authentication.php

Using an autoloader, you simply need to register the plugin during the bootstrap process.  I show this in the blog post here:
$controller = Zend_Controller_Front::getInstance();
$controller-&gt;registerPlugin(new My_Controller_Plugin_Authentication());
$controller-&gt;dispatch();</description>
		<content:encoded><![CDATA[<p>I usually put the plugin in my library directory: lib/My/Controller/Plugin/Authentication.php</p>
<p>Using an autoloader, you simply need to register the plugin during the bootstrap process.  I show this in the blog post here:<br />
$controller = Zend_Controller_Front::getInstance();<br />
$controller->registerPlugin(new My_Controller_Plugin_Authentication());<br />
$controller->dispatch();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More Reliable Authentication in Zend Framework by Oleg</title>
		<link>http://www.hermanradtke.com/blog/more-reliable-authentication-in-zend-framework/comment-page-1/#comment-4497</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Tue, 24 Aug 2010 06:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=91#comment-4497</guid>
		<description>Will you be so kind to tell in what directory to put plugin and hwo to tell the framework where to look for it?</description>
		<content:encoded><![CDATA[<p>Will you be so kind to tell in what directory to put plugin and hwo to tell the framework where to look for it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring Facebook&#8217;s Thrift by Phil Freo</title>
		<link>http://www.hermanradtke.com/blog/exploring-facebooks-thrift/comment-page-1/#comment-4350</link>
		<dc:creator>Phil Freo</dc:creator>
		<pubDate>Wed, 04 Aug 2010 21:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=52#comment-4350</guid>
		<description>Updated post with PHP code is here:
http://www.hermanradtke.com/blog/facebook-thrift-php-client/</description>
		<content:encoded><![CDATA[<p>Updated post with PHP code is here:<br />
<a href="http://www.hermanradtke.com/blog/facebook-thrift-php-client/" rel="nofollow">http://www.hermanradtke.com/blog/facebook-thrift-php-client/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hidden features with spl_autoload() and namespaces by immeëmosol</title>
		<link>http://www.hermanradtke.com/blog/hidden-features-with-spl_autoload-and-namespaces/comment-page-1/#comment-3924</link>
		<dc:creator>immeëmosol</dc:creator>
		<pubDate>Sun, 23 May 2010 23:29:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=171#comment-3924</guid>
		<description>Hi, I tried to find someplace to follow your patch, but couldn&#039;t find any.
Do you perhaps have an url for me so I can track its progression?
I also notified some other people of your patch :
http://stackoverflow.com/questions/2862133/namespace-autoload-works-under-windows-but-not-on-linux/2893956#2893956
/me=hoping it&#039;ll be patched soon.</description>
		<content:encoded><![CDATA[<p>Hi, I tried to find someplace to follow your patch, but couldn&#8217;t find any.<br />
Do you perhaps have an url for me so I can track its progression?<br />
I also notified some other people of your patch :<br />
<a href="http://stackoverflow.com/questions/2862133/namespace-autoload-works-under-windows-but-not-on-linux/2893956#2893956" rel="nofollow">http://stackoverflow.com/questions/2862133/namespace-autoload-works-under-windows-but-not-on-linux/2893956#2893956</a><br />
/me=hoping it&#8217;ll be patched soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend_Soap_AutoDiscover and eAccelerator by Herman Radtke</title>
		<link>http://www.hermanradtke.com/blog/zend_soap_autodiscover-and-eaccelerator/comment-page-1/#comment-3771</link>
		<dc:creator>Herman Radtke</dc:creator>
		<pubDate>Thu, 06 May 2010 15:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=255#comment-3771</guid>
		<description>The filter syntax is really buggy.  I have been reading a lot about the problems people were having.  Particularly, filtering a directory with a wildcard was not working, nor was filtering multiple directories at once.

I have settled on the following syntax:
ini_set(&#039;eaccelerator.filter&#039;,
    &#039;!*SomeSoapClass.php !*AnotherSoapClass.php&#039;);

This is slightly different from my original syntax in that it adds a wildcard to the front of the class name.  This fixes some weird issues with how the filter looks for the files to not filter.  The problem with this method is that I have to maintain this list as I add more soap classes, but it is the best I have found.

To be clear: only the soap class that is being reflected on needs to be filtered.  I don&#039;t even filter my abstract soap class.</description>
		<content:encoded><![CDATA[<p>The filter syntax is really buggy.  I have been reading a lot about the problems people were having.  Particularly, filtering a directory with a wildcard was not working, nor was filtering multiple directories at once.</p>
<p>I have settled on the following syntax:<br />
ini_set(&#8216;eaccelerator.filter&#8217;,<br />
    &#8216;!*SomeSoapClass.php !*AnotherSoapClass.php&#8217;);</p>
<p>This is slightly different from my original syntax in that it adds a wildcard to the front of the class name.  This fixes some weird issues with how the filter looks for the files to not filter.  The problem with this method is that I have to maintain this list as I add more soap classes, but it is the best I have found.</p>
<p>To be clear: only the soap class that is being reflected on needs to be filtered.  I don&#8217;t even filter my abstract soap class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend_Soap_AutoDiscover and eAccelerator by nauw</title>
		<link>http://www.hermanradtke.com/blog/zend_soap_autodiscover-and-eaccelerator/comment-page-1/#comment-3766</link>
		<dc:creator>nauw</dc:creator>
		<pubDate>Thu, 06 May 2010 07:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=255#comment-3766</guid>
		<description>Hello,

Thanks for this tips.

Unfortunately i&#039;m running under eAccelerator 0.9.5, and cannot deploy another one.

i&#039;m trying to declare to not cache some script, but it failling too.

I&#039;m using * char to declare several files and folder to not cache.

Do you know if i need to filter every files involved in my Soap (i mean controller, class, sub class?).

Thanks in advance for your help,

Nauw</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thanks for this tips.</p>
<p>Unfortunately i&#8217;m running under eAccelerator 0.9.5, and cannot deploy another one.</p>
<p>i&#8217;m trying to declare to not cache some script, but it failling too.</p>
<p>I&#8217;m using * char to declare several files and folder to not cache.</p>
<p>Do you know if i need to filter every files involved in my Soap (i mean controller, class, sub class?).</p>
<p>Thanks in advance for your help,</p>
<p>Nauw</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Absolute URL&#8217;s In The View by Herman Radtke</title>
		<link>http://www.hermanradtke.com/blog/using-absolute-urls-in-the-view/comment-page-1/#comment-3618</link>
		<dc:creator>Herman Radtke</dc:creator>
		<pubDate>Fri, 23 Apr 2010 14:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=374#comment-3618</guid>
		<description>Are you using custom routes?  What version of ZF are you using?

The idea of the URL helper is to produce an absolute url (or on that has a forward slash in the very beginning).  Echo out $this-&gt;url(...) outside of an href and see if the forward slash is there.</description>
		<content:encoded><![CDATA[<p>Are you using custom routes?  What version of ZF are you using?</p>
<p>The idea of the URL helper is to produce an absolute url (or on that has a forward slash in the very beginning).  Echo out $this->url(&#8230;) outside of an href and see if the forward slash is there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Absolute URL&#8217;s In The View by chris</title>
		<link>http://www.hermanradtke.com/blog/using-absolute-urls-in-the-view/comment-page-1/#comment-3611</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Fri, 23 Apr 2010 04:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=374#comment-3611</guid>
		<description>I am having trouble generating links in a ZF-powered application.  I am using things like the URL view helper and the zend navigation view helper.  Except, the URLs that are generated from either of these view helpers seem to be relative URLs...

so, on the homepage, zend navigation view helper displays:
&quot;http://mydomain.com/about&quot;, &quot;http://mydomain.com/contact&quot;, etc.  This is correct, but it&#039;s just a coincidence that it&#039;s correct.  If i travel to the contact page, then all of my links become...&quot;http://mydomain.com/contact&quot;

any help would be much appreciated</description>
		<content:encoded><![CDATA[<p>I am having trouble generating links in a ZF-powered application.  I am using things like the URL view helper and the zend navigation view helper.  Except, the URLs that are generated from either of these view helpers seem to be relative URLs&#8230;</p>
<p>so, on the homepage, zend navigation view helper displays:<br />
&#8220;http://mydomain.com/about&#8221;, &#8220;http://mydomain.com/contact&#8221;, etc.  This is correct, but it&#8217;s just a coincidence that it&#8217;s correct.  If i travel to the contact page, then all of my links become&#8230;&#8221;http://mydomain.com/contact&#8221;</p>
<p>any help would be much appreciated</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Absolute URL&#8217;s In The View by Herman Radtke</title>
		<link>http://www.hermanradtke.com/blog/using-absolute-urls-in-the-view/comment-page-1/#comment-3496</link>
		<dc:creator>Herman Radtke</dc:creator>
		<pubDate>Sun, 28 Mar 2010 01:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=374#comment-3496</guid>
		<description>Just noticed that Wordpress garbled this post.  I have corrected it.  Sorry for the confusion.</description>
		<content:encoded><![CDATA[<p>Just noticed that WordPress garbled this post.  I have corrected it.  Sorry for the confusion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP 5.3 is the new JavaScript (almost) by Using Absolute URL&#8217;s In The View &#124; LAMPlights</title>
		<link>http://www.hermanradtke.com/blog/php-5-3-is-the-new-javascript-almost/comment-page-1/#comment-3495</link>
		<dc:creator>Using Absolute URL&#8217;s In The View &#124; LAMPlights</dc:creator>
		<pubDate>Sun, 28 Mar 2010 01:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.hermanradtke.com/blog/?p=377#comment-3495</guid>
		<description>[...] and closures to meet all the requirements and isolate the parts that change.&#160; Read these posts if you are not familiar with functional programming in PHP. class Crimson_Url &#123; public static [...]</description>
		<content:encoded><![CDATA[<p>[...] and closures to meet all the requirements and isolate the parts that change.&nbsp; Read these posts if you are not familiar with functional programming in PHP. class Crimson_Url &#123; public static [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
