<?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 Rob Rosenbaum&#039;s Development Blog</title>
	<atom:link href="http://robrosenbaum.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://robrosenbaum.com</link>
	<description>PHP, JavaScript, and Other Things</description>
	<lastBuildDate>Wed, 25 Feb 2009 11:43:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on HOWTO: Disable Session Timeout in Symfony by Larry Weya</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-206</link>
		<dc:creator>Larry Weya</dc:creator>
		<pubDate>Wed, 25 Feb 2009 11:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-206</guid>
		<description>http://www.symfony-project.org/installation/1_1/upgrade#Session%20timeout

Set it in factories.yml for symfony 1.1</description>
		<content:encoded><![CDATA[<p><a href="http://www.symfony-project.org/installation/1_1/upgrade#Session%20timeout" rel="nofollow">http://www.symfony-project.org/installation/1_1/upgrade#Session%20timeout</a></p>
<p>Set it in factories.yml for symfony 1.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Disable Session Timeout in Symfony by Rajeevr</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-205</link>
		<dc:creator>Rajeevr</dc:creator>
		<pubDate>Tue, 04 Nov 2008 06:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-205</guid>
		<description>Hi,
I put timeout as 1 in settings.yml
But the session is not clearing!!!
Tel me whats the problem??</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I put timeout as 1 in settings.yml<br />
But the session is not clearing!!!<br />
Tel me whats the problem??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Disable Session Timeout in Symfony by Colnector</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-204</link>
		<dc:creator>Colnector</dc:creator>
		<pubDate>Thu, 09 Oct 2008 06:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-204</guid>
		<description>As I&#039;ve had trouble making this work with Symfony 1.1, here&#039;s my small patch. It&#039;s for the same initialize() function
mentioned here.

public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = array()) {
$options[&#039;timeout&#039;] = 86400; # 1 day – or set to as long as you want

parent::initialize($dispatcher, $storage, $options);
}</description>
		<content:encoded><![CDATA[<p>As I&#8217;ve had trouble making this work with Symfony 1.1, here&#8217;s my small patch. It&#8217;s for the same initialize() function<br />
mentioned here.</p>
<p>public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = array()) {<br />
$options['timeout'] = 86400; # 1 day – or set to as long as you want</p>
<p>parent::initialize($dispatcher, $storage, $options);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Disable Session Timeout in Symfony by Sebastian</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-203</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Fri, 30 May 2008 07:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-203</guid>
		<description>Rob,

there is no difference between PHP and sf session handling. In fact, AFAIK sf uses PHP file based session handler by default.

Independent of the storage, the session system never detects browser close, it always does its gc based on the timestamp of the
last request. Each request updates a timestamp of or in the session file/database entry.

But for sure its ok to disable this system if it doesn&#039;t work for you (because of times of long activity).

I just wanted to state that there is no difference in principal between sf and PHP session handling!

Sebastian</description>
		<content:encoded><![CDATA[<p>Rob,</p>
<p>there is no difference between PHP and sf session handling. In fact, AFAIK sf uses PHP file based session handler by default.</p>
<p>Independent of the storage, the session system never detects browser close, it always does its gc based on the timestamp of the<br />
last request. Each request updates a timestamp of or in the session file/database entry.</p>
<p>But for sure its ok to disable this system if it doesn&#8217;t work for you (because of times of long activity).</p>
<p>I just wanted to state that there is no difference in principal between sf and PHP session handling!</p>
<p>Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Disable Session Timeout in Symfony by thichquay</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-202</link>
		<dc:creator>thichquay</dc:creator>
		<pubDate>Sat, 26 Apr 2008 02:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-202</guid>
		<description>I created a myUser.class.php under lib folder but however, I don&#039;t think this method is working (settings.yml was set with
timeout = false as well). Please help…

THanks</description>
		<content:encoded><![CDATA[<p>I created a myUser.class.php under lib folder but however, I don&#8217;t think this method is working (settings.yml was set with<br />
timeout = false as well). Please help…</p>
<p>THanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

