web-dev-qa-db-ja.com

マイアカウントページでRedmine500内部サーバーエラー

私は this メソッドを使用してredmineをインストールしました

/opt/redmineにredmineをインストールし、/opt/redmine/current/log/production.logでログインを確認しました

最近、2.5.2.stable.13345から2.5.3.stable.14266にアップグレードしました

My install info. Environment: Redmine version 2.5.3.stable.14266 Ruby version 2.0.0-p481 (2014-05-08) [x86_64-linux] Rails version 3.2.19 Environment production Database adapter Mysql2 SCM: Subversion 1.8.8 Git 1.9.1 Filesystem
Redmine plugins: redmine_agile 1.3.2 redmine_graphs 0.1.0 sidebar_hide 0.0.7

Production.logの私のしっぽ

Completed 500 Internal Server Error in 42.6ms

ActionView::Template::Error (cannot load such file -- tzinfo/definitions/Europe/London):
1: <%= labelled_fields_for :pref, @user.pref do |pref_fields| >
2: <p><= pref_fields.check_box :hide_mail ></p>
3: <p><= pref_fields.time_zone_select :time_zone, nil, :include_blank => true ></p>
4: <p><= pref_fields.select :comments_sorting,[[l(:label_chronological_order), 'asc'],[l(:label_reverse_chronological_order), 'desc']] ></p>
5: <p><= pref_fields.check_box :warn_on_leaving_unsaved ></p>
6: < end %>
lib/redmine/views/labelled_form_builder.rb:42:in `time_zone_select'
app/views/users/_preferences.html.erb:3:in `block in         app_views_users_preferences_html_erb__1218068006107140812_70264432515560'
app/helpers/application_helper.rb:1050:in `labelled_fields_for'
app/views/users/_preferences.html.erb:1:in     `_app_views_users__preferences_html_erb__1218068006107140812_70264432515560'
app/views/my/account.html.erb:43:in `block in     app_views_my_account_html_erb_373455605642633520_70264429441020'
app/helpers/application_helper.rb:1043:in `labelled_form_for'
app/views/my/account.html.erb:9:in       `_app_views_my_account_html_erb__373455605642633520_70264429441020'

「マイアカウント」ページ以外はすべて機能しているようです。

私はこの問題を他の場所で見つけましたが、解決策はありません

ここ

および ここ

探しているファイルは存在しませんが、解決策がわかりません。どんな助けでも大歓迎です。

編集1

以下の手順に従った後、新しい問題が発生しました。

Web application could not be started

Cannot execute "/home/$USER/.rvm/gems/Ruby-2.0.0-p481/gems/passenger-4.0.45/buildout/agents/SpawnPreparer": Permission denied (errno=13)

Application root
/opt/redmine/current
Environment (value of Rails_ENV, RACK_ENV, WSGI_ENV, NODE_ENV and  PASSENGER_APP_ENV)
production
Ruby interpreter command

/home/$USER/.rvm/gems/Ruby-2.0.0-p481/wrappers/Ruby

User and groups

Unknown

Environment variables

Unknown

Ulimits

Unknown

私はこれに対する解決策をあちこち探してきました、そして私は関係するすべてのファイル/ディレクトリで私の許可と所有者をチェックしました。すべてが同じユーザーによって所有されており、すべてを777に移動しましたが、何も機能しません。

1
trueCamelType

Gemが実際にインストールされているかどうかを確認してみましたか?

gem list

インストールされていない場合は、おそらくそれが問題です。

Gemfileと同じディレクトリにいる場合は、次のものを使用できるはずです。

bundle update

それでも問題が解決しない場合は、手動でインストールできます。

インストール情報は見つけることができます ここ

gem install tzinfo
gem install tzinfo-data

次に、アプリケーションサーバーを再起動する必要がある場合があります。

2
Slimmons