[Rails] Re: Changing users password not working

2012-01-24 Thread brahmana
Ok, since I do not know your controller code, this is pretty much a shot in the blind, but here it is anyways : Looking at the passwords/edit.html.erb being rendered at the end I am guessing that there was some error or exception while changing the password which was caught and the user was asked

[Rails] Re: Changing users password not working

2012-01-24 Thread Kapil Kaligotla
These are the logs in server Started POST "/passwords/show" for 127.0.0.1 at 2012-01-24 17:26:46 +0530   Processing by PasswordsController#update as HTML   Parameters: {"utf8"=>"Γ£ô", "authenticity_token"=>"Ywh7x8r1DMlPq9277Uca7CoxaeJ QJVxhXH9AmTR4O1c=", "user"=>{"current_password"=>"[FILTERED]", "

[Rails] Re: Changing users password not working

2012-01-24 Thread Alex Mercer
Can you provide info from log file when this action performing ? + Check validations in your model and what params you getting in `params[:user]`. On Jan 24, 8:32 am, Kapil Kaligotla wrote: > I am using rails 3.0.10, in that i had created users using devise and > i followed the below link to chan