I installed Devise and things seem to stop up whenever I try to create an account.
The full error reads:
Missing host to link to! Please provide :host parameter or set default_url_options[:host]
I’ve got the following code sitting in inside the development.rb block. I’ve tried it with and without the added smtp configurations.
config.action_mailer.default_url_options = { :host => 'localhost' }
config.action_mailer.delivery_method = :smtp
...
Have I defined host incorrectly?
The files under config/ are not automatically reloaded in development. If you have made changes to this file, ensure that you have restarted the Rails server, and any Rails console sessions for the changes to take effect.