<?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: HOWTO: Disable Session Timeout in Symfony</title>
	<atom:link href="http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/feed/" rel="self" type="application/rss+xml" />
	<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/</link>
	<description>PHP, Symfony, and Other Web Things</description>
	<lastBuildDate>Thu, 03 Dec 2009 15:38:10 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Larry Weya</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-340</link>
		<dc:creator>Larry Weya</dc:creator>
		<pubDate>Wed, 25 Feb 2009 12:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-340</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>By: Rajeevr</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-327</link>
		<dc:creator>Rajeevr</dc:creator>
		<pubDate>Tue, 04 Nov 2008 07:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-327</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>By: Colnector</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-325</link>
		<dc:creator>Colnector</dc:creator>
		<pubDate>Thu, 09 Oct 2008 09:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-325</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&#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.</p>
<p>	public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = array()) {<br />
		$options['timeout'] = 86400; # 1 day &#8211; or set to as long as you want</p>
<p>		parent::initialize($dispatcher, $storage, $options);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-320</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Mon, 30 Jun 2008 08:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-320</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 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&#039;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>By: thichquay</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-318</link>
		<dc:creator>thichquay</dc:creator>
		<pubDate>Mon, 26 May 2008 03:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-318</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&#039;t think this method is working (settings.yml was set with timeout = false as well). Please help&#8230;</p>
<p>THanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thichquay</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-317</link>
		<dc:creator>thichquay</dc:creator>
		<pubDate>Sun, 25 May 2008 15:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-317</guid>
		<description>hello,

how can I reference the new myUser class (I&#039;m using the 1st method)?  Also, where should I place this class at?

Thankns

newbie</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>how can I reference the new myUser class (I&#039;m using the 1st method)?  Also, where should I place this class at?</p>
<p>Thankns</p>
<p>newbie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Store Symfony Sessions in Database with Propel : LampJunkie.com - Everything related to Linux, PHP, MySQL, Apache, AJAX, Symfony and more</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-316</link>
		<dc:creator>&#187; Store Symfony Sessions in Database with Propel : LampJunkie.com - Everything related to Linux, PHP, MySQL, Apache, AJAX, Symfony and more</dc:creator>
		<pubDate>Fri, 23 May 2008 17:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-316</guid>
		<description>[...] http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/" rel="nofollow">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Store Symfony Sessions in Database with Doctrine : LampJunkie.com - Everything related to Linux, PHP, MySQL, Apache, AJAX, Symfony and more</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-315</link>
		<dc:creator>&#187; Store Symfony Sessions in Database with Doctrine : LampJunkie.com - Everything related to Linux, PHP, MySQL, Apache, AJAX, Symfony and more</dc:creator>
		<pubDate>Wed, 21 May 2008 22:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-315</guid>
		<description>[...] http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/" rel="nofollow">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edowardo</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-314</link>
		<dc:creator>Edowardo</dc:creator>
		<pubDate>Thu, 15 May 2008 10:21:46 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-314</guid>
		<description>Good solution. Just simple it is.
Can implement without security matters ya!</description>
		<content:encoded><![CDATA[<p>Good solution. Just simple it is.<br />
Can implement without security matters ya!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Large Lee</title>
		<link>http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/comment-page-1/#comment-310</link>
		<dc:creator>Large Lee</dc:creator>
		<pubDate>Sat, 03 May 2008 03:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://robrosenbaum.com/php/howto-disable-session-timeout-in-symfony/#comment-310</guid>
		<description>Hi,

Does anyone know how to defeat a webpage from timeing out after a certain amount of time?

Is there a simple piece of software that will periodically conduct some activity at the users end on the page so the time-out perpetually resets itself and the page won&#039;t close?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Does anyone know how to defeat a webpage from timeing out after a certain amount of time?</p>
<p>Is there a simple piece of software that will periodically conduct some activity at the users end on the page so the time-out perpetually resets itself and the page won&#039;t close?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
