I'm looking to download and experiment with the Turnkey Redmine appliance. Can someone please advise whether I'd be able to install Redmine plugins onto the device and if so how? All help gratefully received!
- Julian
Replies (5)
Plug ins
Reply 1I don't know but "find" might help?
Reply 2To find the three directories you're looking for I would try something like this:
find / -type d -iname redmine # iname means it's case insensative find / -type d -name railsappIf they output too much, you can use grep to narrow it down:
find / -type d -iname redmine | grep data
Sorry for slow response...
Reply 3It might be worth checking with the plugin provider. Do they have some sort of support? Please post back if you get any further with this (even if it's not solved). I'll try to help as much as I can...
Actually if you can post the exact steps you've taken so far so I could try to reproduce it when I get a chance. Then I can see if there's something wrong with TurnKey; or it's just an incompatibility.
I hope you don't mind I edited your last 2 posts
Reply 4Anyway, as I said I am not very familiar with Ruby but it seems to me like you need to install capybara v1.1.0 but you installed the latest (v2.6.2). Google suggests that you can install specific gem version using the -v switch, so perhaps try:
gem install capybara -v 1.1.0
Although having said that, I still think that there may be deeper issues with mismatched versions. It does look like things might be pretty messed up on your server. Perhaps it might be wroth starting again in a clean VM? It may not make any difference, but at least you know that it's not failing because of something you recently broke. I still haven't had a chance to look into it myself, but thanks for posting clear instructions.
Sorry for slow reply
Reply 5Having said that, I think I might know what is going on. If you look at the error you are getting it's saying that it can't find the files that it's looking for. That suggests that you are in the wrong place in the filesystem. Looking at previous posts in this thread it seems that Redmine is installed to /var/www/redmine so my guess is that is where you should be rather than /usr/local/share/redmine...
I hope that might help get you going in the right direction...
Sure - it works fine to install plug-in's - other than check compatibility first
Nav to your railsapp/vendor/plugins and download the plugin then rack the db to update
I would advise backing up the db before each plugin install
Download straight from GitHub worked for us best - i.e.
git clone git://github.com/user_name/name_of_the_plugin.git
then - if needed