[Rails] Re: uninitialized constant User::Authentication

2010-08-01 Thread Computer Manic
Daniel X Moore wrote: > I had the same problem, but restarting script/server fixed it. same to me -- Posted via http://www.ruby-forum.com/. -- 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

[Rails] Re: uninitialized constant User::Authentication

2010-07-11 Thread Charles Wang
Daniel X Moore wrote: > I had the same problem, but restarting script/server fixed it. This help! -- Posted via http://www.ruby-forum.com/. -- 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

[Rails] Re: uninitialized constant User::Authentication

2010-06-10 Thread Reth Righ
Dave Amos wrote: > I still haven't figured this out yet. Am I missing a file somewhere? I had to move my restful_authenication to the vendor/plugins and that fixed the error message and now everything works. Reth11 -- Posted via http://www.ruby-forum.com/. -- You received this message because

[Rails] Re: uninitialized constant User::Authentication

2010-02-24 Thread Victor Stan
Dave Amos wrote: > Hi there, > > I just ran the generator for Restful Authentication, and when I visit > localhost:3000/users/new, I get the error: uninitialized constant > User::Authentication > > The error comes from these lines in my user.rb model: > > class User < ActiveRecord::Base > incl

[Rails] Re: uninitialized constant User::Authentication

2010-02-17 Thread Marnen Laibow-Koser
Dave Amos wrote: > Hi there, > > I just ran the generator for Restful Authentication, and when I visit > localhost:3000/users/new, I get the error: uninitialized constant > User::Authentication Since you just put restful_auth into your project, do yourself a favor and take it right back out agai

[Rails] Re: uninitialized constant User::Authentication

2010-02-17 Thread Ozgun Koyun
Ozgun Koyun wrote: > > It didn't work for me. > > I had to comment out "config.active_record.observers = :user_observer". > It may not be the perfect solution, but it saved the day. However, I > don't know what tomorrow brings :) On the other hand, you should also check if "vendor/plugins/rest

[Rails] Re: uninitialized constant User::Authentication

2010-02-17 Thread Ozgun Koyun
abhishek.parolkar wrote: > Boys, >Almost all the time this problem arises because , scope of the > Authentication module falls under different context , Its always > better to use fully qualified module names, > > class User < ActiveRecord::Base > include ::Authentication > include :

[Rails] Re: uninitialized constant User::Authentication

2009-09-21 Thread abhishek.parolkar
Boys, Almost all the time this problem arises because , scope of the Authentication module falls under different context , Its always better to use fully qualified module names, class User < ActiveRecord::Base include ::Authentication include ::Authentication::ByPassword include

[Rails] Re: uninitialized constant User::Authentication

2008-09-06 Thread Jonathan
I had this problem and after much work discovered that the session on my browser was confusing the server somehow. My deleting the cookie I was able to access all the pages correctly without errors. On Aug 20, 6:56 pm, Daniel Moore <[EMAIL PROTECTED]> wrote: > I had the same problem, but restart