search for: williambhard

Displaying 2 results from an estimated 2 matches for "williambhard".

2008 Mar 31
2
Hosted SMTP Server Recommendation?
...aintain as possible. I''ve looked around Google, but it seems very difficult to find a host that provides a pre-configured SMTP server with flexible daily sending limits. Probably because many of the people that would want something like this are spammers. Thanks, Bill Harding http://www.williambharding.com/blog --~--~---------~--~----~------------~-------~--~----~ 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 unsubscribe from this...
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], params[:password]) if logged_in? session.model.user_id = current_user.id if params[:remember_me] == "1" self.current_user.remember_me...