2012-02-09 54 views
0

所以我已经部署了我的应用程序的Heroku测试了几个星期,因为昨天我不断收到以下一种错误的Heroku的日志:的Heroku + Rails的:奇怪的错误(雪松堆栈)

Started GET "/user/shipping_address" for xx.xxx.xxx at 2012-02-09 15:46:37 +0000  
NameError (undefined local variable or method `sign_up_path' for #<UsersController:0x000000036210a8>): 
app/controllers/application_controller.rb:57:in `require_user' 

还有一句:

Started POST "/purchase/search" for xx.xxx.xxx at 2012-02-09 15:31:30 +0000 
NameError (undefined local variable or method `sign_up_path' for #<PurchasesController:0x000000051a3d08>): 
app/controllers/application_controller.rb:57:in `require_user' 

我也不断收到萤火虫(真的)怪异的JavaScript错误,如“OBJECT_ID”失踪,其中OBJECT_ID不应该在代码点使用。

它在当地环境中没有任何开发/生产环境中的缺陷,并且在我的heroku应用程序之前也一直在运行。

任何提示非常感谢。这个错误真的让我失望。 最佳,菲尔

(雪松堆栈,Rails的3.0,authlogic)

回答

0

好,我更新authlogic到3.1.0的最新版本(认为它是在3.0.3),一切工作现在。

相关问题