我正在尝试将我的应用程序推送到heroku。我仍然在开发中。我将设计与可确认模块一起使用。
当我尝试使用heroku控制台添加用户时,出现此错误:
Missing host to link to! Please provide :host parameter or set default_url_options[:host]
在测试和开发环境中,我有以下内容:
环境/development.rb和环境/test.rb
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
我没有在生产环境中设置任何东西。
我试图推动
config.action_mailer.default_url_options = { :host => 'mywebsitename.com' }
config.action_mailer.default_url_options = { :host => 'heroku.mywebsitename.com' }
但这也行不通..
我在网上看到它可能与ActionMailer有关,但是我不知道必须配置什么。非常感谢您的想法!
编辑:
你好
为了避免在我按下heroku时我的应用程序崩溃,我将其放在env / test.rb和env / dev.rb中(不是在env.rb中,我认为这是因为它是Rails 3应用程序)
config.action_mailer.default_url_options = { :host => 'yourapp.heroku.com' }
但是,当我尝试在heroku控制台中创建用户时:
User.create(:username => "test", :email => "test@test.com", :password => "test1234", :password_confirmation => "test1234", :confirmed_at => "2010-11-03 14:11:15.520128")
这是我得到的错误:
ActionView::Template::Error: Missing host to link to! Please provide :host parameter or set default_url_options[:host]
/home/slugs/.../mnt/.bundle/gems/ruby/1.8/gems/actionpack-3.0.0/lib/action_dispatch/routing/route_set.rb:473:in `url_for'
/home/slugs/.../mnt/.bundle/gems/ruby/1.8/gems/actionpack-3.0.0/lib/action_dispatch/routing/url_for.rb:132:in `url_for'
/home/slugs/.../mnt/.bundle/gems/ruby/1.8/gems/actionpack-3.0.0/lib/action_view/helpers/url_helper.rb:99:in `url_for'
/home/slugs/.../mnt/.bundle/gems/ruby/1.8/gems/actionpack-3.0.0/lib/action_dispatch/routing/route_set.rb:195:in `user_confirmation_url'
编辑(2)
当我在控制台上键入heroku log时,我得到了==> production.log <==所以我认为当一个部署在heroku上时,它已经在生产中。
我这样配置env / prod.rb:
config.action_mailer.default_url_options = { :host => 'yourapp.heroku.com' }
现在,当我尝试创建用户时,我将其作为错误:
Errno::EAFNOSUPPORT: Address family not supported by protocol - socket(2)
/usr/ruby1.8.7/lib/ruby/1.8/net/smtp.rb:551:in `initialize'
/usr/ruby1.8.7/lib/ruby/1.8/net/smtp.rb:551:in `open'
/usr/ruby1.8.7/lib/ruby/1.8/net/smtp.rb:551:in `do_start'
/usr/ruby1.8.7/lib/ruby/1.8/timeout.rb:62:in `timeout'