質問編集履歴

2

エラーログ内容を転記しました

2018/05/28 05:58

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,79 @@
37
37
  If you are the Redmine administrator, check your log files for details about the error.
38
38
 
39
39
  ```
40
+
41
+
42
+
43
+ エラーログは下記のとおりです。
44
+
45
+
46
+
47
+ ```production.log
48
+
49
+ Started GET "/redmine/" for XXX.X.X.X at 2018-XX-XX XX:XX:XX +0900
50
+
51
+ Processing by WelcomeController#index as HTML
52
+
53
+ Current user: **** (id=1)
54
+
55
+ Rendered welcome/index.html.erb within layouts/base (2.0ms)
56
+
57
+ Missing template, responding with 404
58
+
59
+ Rendered common/error.html.erb within layouts/base (0.0ms)
60
+
61
+ Completed 500 Internal Server Error in 427ms (ActiveRecord: 236.0ms)
62
+
63
+
64
+
65
+ ActionView::Template::Error (Missing partial banner/_project_body_bottom with {:locale=>[:ja, :en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :rsb]}. Searched in:
66
+
67
+ * "C:/Bitnami/redmine-3.4.4-3/apps/redmine/htdocs/plugins/redmine_work_time/app/views"
68
+
69
+ * "C:/Bitnami/redmine-3.4.4-3/apps/redmine/htdocs/plugins/easy_gantt/app/views"
70
+
71
+ * "C:/Bitnami/redmine-3.4.4-3/apps/redmine/htdocs/app/views"
72
+
73
+ * "C:/Bitnami/redmine-3.4.4-3/ruby/lib/ruby/gems/2.3.0/gems/redmine_extensions-0.2.9/app/views"
74
+
75
+ ):
76
+
77
+ 105: <%= view_layouts_base_sidebar_hook_response %>
78
+
79
+ 106: </div>
80
+
81
+ 107:
82
+
83
+ 108: <div id="content">
84
+
85
+ 109: <%= render_flash_messages %>
86
+
87
+ 110: <%= yield %>
88
+
89
+ 111: <%= call_hook :view_layouts_base_content %>
90
+
91
+ plugins/redmine_banner-master/lib/banner_application_hooks.rb:17:in `view_layouts_base_content'
92
+
93
+ lib/redmine/hook.rb:61:in `block (2 levels) in call_hook'
94
+
95
+ lib/redmine/hook.rb:61:in `each'
96
+
97
+ lib/redmine/hook.rb:61:in `block in call_hook'
98
+
99
+ lib/redmine/hook.rb:58:in `tap'
100
+
101
+ lib/redmine/hook.rb:58:in `call_hook'
102
+
103
+ lib/redmine/hook.rb:96:in `call_hook'
104
+
105
+ app/views/layouts/base.html.erb:108:in `_app_views_layouts_base_html_erb___215493345_35494368'
106
+
107
+ app/controllers/application_controller.rb:491:in `block (2 levels) in render_error'
108
+
109
+ app/controllers/application_controller.rb:489:in `render_error'
110
+
111
+ app/controllers/application_controller.rb:477:in `render_404'
112
+
113
+ app/controllers/application_controller.rb:501:in `missing_template'
114
+
115
+ ```

1

発生現象を追記しました

2018/05/28 05:58

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -15,3 +15,25 @@
15
15
  下記エントリに記載させていただきました。
16
16
 
17
17
  https://qiita.com/asakura_0603/items/0571229b5c920c31b585
18
+
19
+
20
+
21
+ # 発生現象
22
+
23
+ localhost/Redmineにアクセスすると、トップページが表示されず、"Redmine 500 error"というタイトルで下記エラーメッセージが表示されておりました。
24
+
25
+ ```
26
+
27
+ Internal error
28
+
29
+
30
+
31
+ An error occurred on the page you were trying to access.
32
+
33
+ If you continue to experience problems please contact your Redmine administrator for assistance.
34
+
35
+
36
+
37
+ If you are the Redmine administrator, check your log files for details about the error.
38
+
39
+ ```