additionals icon indicating copy to clipboard operation
additionals copied to clipboard

Brokes wiki page after installing plugin

Open dyustepanov opened this issue 2 years ago • 7 comments

The wiki section breaks after installing the plugin Redmine: 4.2.5.stable DB: PostgreSQL 14 Ruby: 2.7.0

Log: Missing template, responding with 404: Missing template wiki/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[]}. Searched in: * "/opt/redmine/plugins/redmine_telegram_email/app/views" * "/opt/redmine/plugins/redmine_git_remote/app/views" * "/opt/redmine/plugins/redmine_code_review/app/views" * "/opt/redmine/plugins/onlyoffice_redmine/app/views" * "/opt/redmine/plugins/additionals/app/views" * "/opt/redmine/app/views" * "/var/lib/gems/2.7.0/gems/render_async-2.1.11/app/views" * "/opt/redmine/plugins/additionals/app/views" Rendering common/error.html.erb within layouts/base Rendered common/error.html.erb within layouts/base (0.3ms) Rendered plugins/redmine_code_review/app/views/code_review/_html_header.html.erb (0.1ms) Rendered plugins/additionals/app/views/additionals/_html_head.html.slim (28.5ms) Rendered plugins/additionals/app/views/additionals/_body_top.slim (0.1ms) Rendered plugins/redmine_code_review/app/views/code_review/_body_bottom.html.erb (0.2ms) Rendered plugins/additionals/app/views/additionals/_body_bottom.html.slim (0.4ms) Completed 404 Not Found in 114ms (Views: 51.9ms | ActiveRecord: 16.8ms)

dyustepanov avatar Apr 27 '22 10:04 dyustepanov

HI @dyustepanov,

this looks like a compatibility problem with another plugin. Try to remove other plugins to find out which plugin causes the problem.

alexandermeindl avatar Apr 27 '22 13:04 alexandermeindl

HI @dyustepanov,

this looks like a compatibility problem with another plugin. Try to remove other plugins to find out which plugin causes the problem.

Thanks, there is conflict with onlyoffice-plugin. And separately, both plugins work correctly.

dyustepanov avatar Apr 28 '22 15:04 dyustepanov

Hi, I confirm that there is a conflict between the additionals and only-office plugins. Is there a way to solve this problem?

viser72 avatar Aug 17 '22 06:08 viser72

I encountered the same problem here. I have not been able to run 'additionals' and 'onlyoffice_redmine' at the same time, without lying the wiki.

Are there any solutions in the meantime?

Kind regards

kieselflink avatar Feb 19 '24 18:02 kieselflink

UP. Same Error, Redmine 5.1.2 and only-office plugin

RomanGame avatar Mar 06 '24 21:03 RomanGame

commented out plugins/additionals/app/overrides/wiki_show.rb and all worked now.

plugins/additionals/app/overrides/wiki_show.rb
# frozen_string_literal: true
module WikiShow
#  Deface::Override.new virtual_path: 'wiki/show',
#                       name: 'wiki-show',
#                       sequence: 1,
#                       insert_before: 'p.wiki-update-info',
                       #original: 'd9f52aa98f1cb335314570d3f5403690f1b29145',
#                       partial: 'hooks/view_wiki_show_bottom'
end

RomanGame avatar Mar 06 '24 22:03 RomanGame