0

I am facing some issues when try to install following plugin in mac os. It is working fine in linux as well as in windows. https://github.com/thegcat/redmine_ical

Steps I followed:

After copying plugin files in vendor/plugin folder. Redmine stops working and shows "We're sorry but something went wrong" error message.

I am using bitnami-redmine-1.4.7-2-osx-x86_64-installer.dmg and when I remove Gemfile and require dispatcher from init.rb It starts running but doesn't show Ical on calendar page.

4

2 回答 2

1

复制插件文件后,我们需要从终端运行“捆绑安装”命令。

复制插件文件后在bitnami stack redmine中,

1) $cd 安装目录 2) $./use_redmine 3) $bash: cd root_dir 4) 捆绑安装

这将起作用。

于 2013-09-05T09:00:37.667 回答
0

接受的答案对我不起作用,但确实帮助了我一步。

我必须执行以下操作才能使其成功运行:

cd installdir/apps/redmine/htdocs
bundle install --without development test postgresql sqlite --no-deployment
bundle install --without development test postgresql sqlite --deployment
ruby bin/rake redmine:plugins RAILS_ENV=production

除了(或实际上从内部)使用安装目录中的“use_redmine”bash 之外,这一切。

我选择了另一个不需要补丁文件的 ical 插件(https://github.com/buschmais/redmics

https://docs.bitnami.com/installer/apps/redmine/#how-to-install-the-redmine-agile-plugin

于 2017-02-15T15:54:59.493 回答