Implementing countries and states drop down

Abhi Manyu wrote:
Try removing
@user = User.new from action new_client and replace
@user = User.new(params[:user]) by @user = User.new
Still not working. Again the control is not going after if @user.save. What should be done?

Try @user.save! instead of @user.save and check log/development.log what error is thrown…

Alternative method: run script/console and simulate the user creation via command line (remember to save user with this method user.save! !!!)

Good luck !

Tex.