Yes, I read this one .
This is what I get in my production.log:
ActionView::TemplateError (undefined method `password' for #<User:0x2b0ddb58cdc0>) on line #11 of app/views/users/new.html.erb: 8: </p> 9: <p> 10: <%= f.label :password, "Password:" %><br /> 11: <%= f.password_field :password %> 12: </p> 13: <p> 14: <%= f.label :password_confirmation, "Password again:" %><br />
When I try:
$ heroku rake db:reset RAILS_ENV=production
I get:
yeqynzfiku already exists (in /disk1/home/slugs/109616_e6df6f2_8837/mnt) Couldn't drop yeqynzfiku :
I do not know what it means. I also tried
$ heroku rake db:reset $ heroku rake db:migrate RAILS_ENV=production $ heroku rake db:migrate $ heroku rake gems:install (for what it worth)
Everything works perfectly in place, both in development mode and in production. I have a .gems file in my application, and when I first clicked on Heroku, it seems to just install AuthLogic and Paperclip.
Dead end. Thanks.
ruby-on-rails heroku authlogic
user225643
source share