I'm using the restful_authentication plugin for my login page. The problem is that after I log in as a user, I never get logged out until I click on log out. How do I set a session timeout of 15 minutes? For example, after 15 minutes if I go to any page, I should be redirected to the login page.
|
1
|
|
|
|
|
|
Note that this only sets cookie expiration time, not server-checked session expiration time (at least with the plugin I wrote for rails <2.3). To achieve the latter you'd have to implement your own before_filter that checks a timestamp in the session and discards it if the time is above the acceptable limit. Again, I haven't checked if this is needed for >=2.3 |
||
|
|
|
|
You can configure session expiration times in the config/intializers/session_store.rb file in rails 2.3. Just add the following option:
Alternatively, you can change expiration times per controller/action by using the following in a before_filter:
These instructions were found at: http://squarewheel.pl/posts/3, which also has a link to a plugin for rails < 2.3. |
|||
|
