Displaying 20 results from an estimated 8000 matches similar to: "SessionCleanup (clean up sessions within Rails app)"
2006 Jul 07
1
Cronjob / .rb help clearing session table (new to cronjobs)
I just launched my first ROR app and i need to implement the session
database cleanup. I am new to cronjobs. I have used one once but it
was all copy/paste.
I was hoping someone knew of a good tutorial or resource to get started
here or might be able to give me a little help.
I have seen a lot of posts that reference setting a cron job to clear
old sessions but I am not clear on:
Can you
2007 Jun 08
0
problem with rake db:sessions:clear and session_table_name
The comments in:
actionpack/lib/action_controller/session/activerecord_store.rb
document this method for changing the session table_name:
# You may configure the table name, primary key, and data column.
# For example, at the end of config/environment.rb:
# CGI::Session::ActiveRecordStore::Session.table_name =
''legacy_session_table''
#
2006 Jun 22
4
Can I peek at all "active sessions"?
My users need to login to run the app I''m building. I''d like to give
them an "Other users currently active:" piece of information. I could
track it myself in the database based on login/logout, but that doesn''t
really count for people just leaving the computer logged in and never
coming back. Does Rails have an API for me to monitor sessions and take
a
2005 Jan 19
1
Problem with ActiveRecordStore
I''m having an issue using the ActiveRecordStore for sessions with Rails 0.9.4.1.
When I setup the session object during login I get the following stack trace:
IndexError in Login#auth
string not matched
/app/controllers/login_controller.rb:26:in `auth''
gems/gems/actionpack-1.3.1/lib/action_controller/base.rb:596:in `send''
2006 Dec 01
2
ActiveRecord Sessions
I am considering using merb to process file uploads. For the most
part I''m going to keep it lean and mean. I would however like to
access my active_record_session from my Rails app. Is this built into
merb yet?
Or is it OK to just add require ''action_controller/session/
active_record_store'' to merb_init.rb and then create my own session
object
2008 May 21
2
Replacing ActiveRecordStore::Session with a custom model
Has anyone managed to replace ActiveRecordStore::Session with their
own model?
In the source (http://dev.rubyonrails.org/browser/trunk/actionpack/lib/
action_controller/session/active_record_store.rb) it says you can
override the default by setting
CGI::Session::ActiveRecordStore.session_class = MySessionClass
I have tried doing this in a number of ways but I get all kinds of
weird errors, as
2006 May 17
3
Session in ActiveRecordStore
The Agile book seems to say I should specify this as follows, probably in the
environments.rb:
ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS[:database_manager] =
CGI::Session::ActiveRecordStore
BUT the environments.rb file would have me Un-Comment this:
config.action_controller.session_store = :active_record_store
Anyway, I''ve tried both, and in both cases it
2006 Aug 16
5
too many SESSIONS?
I just notices my app was down, and in the log file were lots of these:
No space left on device -
../config/../tmp/sessions//ruby_sess.898b1cf95e14f8e3
So i figured that i had too many sessions. I went through and deleted
the sessions and then in a few minutes, the site was back up again.
Can anyone explain this?
Did I do the right thing?
Is there a way I can tell my app to accept more
2005 Apr 07
0
Problem with rails on windows using sessions, any help?
Hi, I''m a new rails/ruby user and am having troubles with sessions
under windows. Maybe someone can help me? Env:
Webrick,WindowsXPPro,MySQL
Whenever I try to put an item in the session, and then retrieve it on
a future page load, the item is nil. Somehow it is not persisting the
session items after the request. I looked at the session files and
there are hundreds of them, I thought that
2006 Oct 29
1
ActiveRecordStore: Where is the session id generated?
Where can I find the algorithm that generates the session ids for the
ActiveRecordStore (sql session)?
Thanks,
Shimon Amit
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To
2006 Nov 04
0
Session::ActiveRecordStore
Hi,
I''m trying to use the ACtiveRecordStore option to
accelerate the respone time, since I will a hugo
object stored inside the session object. Everything
works fine, however, I want to know if the "sessions"
table must be set on the default database like pro.
test, dev. Or Can I tell rails for the sessions table
you should look at "This" database, instead of the
2005 Sep 09
0
ActiveRecordStore session.id
Hi,
I am using ActiveRecordStore for my sessions. I have another model
called PageView that stores a record each time a page is viewed
(page_id, session_id). In order to implement this, however, I need to
be able to access the session''s primary ''id'' value, the integer, not
the long encoded ''session_key''. My problem is that I can''t access
2008 Mar 07
0
ActiveRecordStore: cleanup & avoiding duplication
Hi,
I''m using ActiveRecordStore to track user sessions.
I''ve used as a base the next sources:
- http://blog.levicole.com/articles/category/ror
- http://matt-beedle.com/2006/12/13/rails-how-to-find-out-who-is-online/
- http://www.williambharding.com/blog/?p=99
This is what I currently do:
IN SESSION CONTROLLER
def create
self.current_user = User.authenticate(params[:login],
2006 Apr 01
3
permission denied creating ruby sessions
My code was working, and I upgraded to Rails 1.1, and it seemed to be
working after that, but then I suddenly started seeing the following
error:
Permission denied -
/home/will/office/public/../config/../tmp/sessions//ruby_sess.c7da2e7df8df77df
/usr/lib/ruby/1.8/pstore.rb:289:in `initialize''
/usr/lib/ruby/1.8/pstore.rb:289:in `transaction''
2005 Aug 06
2
Problem with 0.13.1 ActiveRecordStore with PG 8.0.3.
Hi,
I put the following in my environment.rb file:
ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS.update
(:database_manager => CGI::Session::ActiveRecordStore)
Runnning WEBrick via "script/server" and trying to load any page
served by a controller results in an error like the following:
#<ActiveRecord::StatementInvalid: ERROR: null value in column "id"
2005 Aug 07
3
tracking online users
Let''s say I have an application and I want to create an admin program
that will show me who is currently online using the application. I
don''t know the best way to do this. Assuming I am storing my sessions
in the default PStore, I don''t suppose there is any method that lists
all the active sessions, is there?
The only way I can think of to do this is to setup a
2006 Apr 05
0
problem upgrading app to RoR1.1
Hi,
I need some help when upgrading one aplication made on rails1.0 to
rails1.1
I have the application on a debian sarge i upgrade ruby gems to 1.1 and
ruby to 1.84 and make an freeze on proyect folder, but when i try to run
the application in production mode gave me these errors:
[Wed Apr 05 13:49:09 2006] [error] [client 99.5.0.45]
file
2006 Jun 09
0
How to specify database for ActiveRecordStore?
Hi,
Is there a way to specify which database to use (other than the default)
for storing sessions via ActiveRecordStore?
I have a replication setup in MySQL with my application set to read from
the slave db, and don''t want the sessions to be written there.
thanks.
-michael
--
Posted via http://www.ruby-forum.com/.
2006 Mar 13
0
Flash keeping forever when using ActiveRecordStore
Hello,
I''m hosting the app on Dreamhost and when I set the session store to
ActiveRecordStore (after creating sessions table), Flash is suddenly
keeping forever - it is not being cleared out automatically. On Webrick
with default session store everything works fine.
Any ideas how to solve this?
Thanks!
--
Posted via http://www.ruby-forum.com/.
2006 Apr 04
0
Session-Problem: singleton can''t be dumped
Hello,
after having changed the session store from CGI::Session::DRbStore to
CGI::Session::ActiveRecordStore, I keep getting an error which says:
singleton can''t be dumped
However, my session object is not a singleton.
Does anybody know what causes this error?
I can also post the full stack trace, if required.
Greetings
Michael Kastner