2013-01-24 47 views
10

私のホームサーバーにgitlabをインストールしましたが、サーバーは動作しています。私はログインページにアクセスできますがログインできません。 5iveL!feGitlabログインエラー:無効なメールまたはパスワード

エラー:メールまたはパスワードが無効です。

何が問題なのですか?

+3

この質問は私の問題を助け、それが検索結果の上位に表示されます。 – pl1nk

答えて

9
/home/gitlab/github/app/observers/user_observer.rb 

Notify.delay.new_user_email(user.id, user.password) 

変更するには:

Notify.new_user_email(user.id, user.password) 

ラン:

[email protected] ~/gitlab/github $ bundle exec rake db:seed_fu RAILS_ENV=production 
+0

ありがとう、それは今働いています。しかし、なぜこのマニュアルのハッキングが必要ですか? – Adrian

+1

@Adrian 'bundle exec rake db:seed_fu RAILS_ENV = production'を実行するのを忘れたようです – pl1nk

関連する問題