ruby on rails - Authentication failing on production server -


on development machine can login fine, once on production, authentication fails base user created in migration.

i can reset password , upon doing auto logged in, when logout , try login again using newly entered password, once again tells have bad email and/or password.

any ideas why be?

=== update

class user < activerecord::base   # default devise modules   devise :database_authenticatable, :registerable,      :recoverable, :rememberable, :trackable, :validatable   ...  end 

i have same problem on staging server. strangest works in production env on personal computer ...

solved here : http://groups.google.com/group/plataformatec-devise/browse_thread/thread/20a73a2b7976806f

thanks !


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -