在Heroku上部署Ruby On Rails应用-(二)

阅读更多

这篇文章主要解决,在部署本地应用到heroku的过程中,打开之后显示不了应用内容的问题......

 

在我部署应用到heroku的过程中,按照之前那篇文章的操作,出现了

We're sorry, but something went wrong. We've been notified about this issue and we'll take a look at it shortly.

应用部署不成功的问题。

 

问题原因:

找了许多资料之后,了解到,应该是数据库迁移不成功,重新migrate之后,还是只显示了一部分页面,觉得数据库还是没有完整迁移或者其他问题。最后,按照如下步骤,顺利解决掉。

 

解决步骤:

 

rake db:migrate

push to heroku, now on heroku:

heroku rake db:reset
heroku rake db:migrate
heroku restart

重启之后,再次刷新在heroku上的页面,发现应用成功部署。

 

这里有我找的两个资料:

1、https://groups.google.com/forum/?fromgroups#!msg/refinery-cms/L_PbN3wCimA/BinrRlj2a54J

2、http://stackoverflow.com/questions/4820313/ruby-on-rails-problems-on-heroku

你可能感兴趣的:(ROR,heroku)