Fresh install 5.0.4. but no plugin visible
Added by Adi Meier about 1 year ago
I have installed fresh environment as described here: https://wiki.debian.org/Redmine
Debian 12, mariaDb.
I copied database from Redmine 4 and did rake db:migrate RAILS_ENV=production
nvironment: Redmine version 5.0.4.stable Ruby version 3.1.2-p20 (2022-04-12) [x86_64-linux-gnu] Rails version 6.1.7.3 Environment production Database adapter Mysql2 Mailer queue ActiveJob::QueueAdapters::AsyncAdapter Mailer delivery smtp Redmine settings: Redmine theme Default SCM: Git 2.39.2 Filesystem Redmine plugins: no plugin installed
Now I want to install some plugins (as I did before) -> https://www.redmine.org/projects/redmine/wiki/Plugins
But, it shows "no Plugins to show" in redmine Adminstation -> Plugins
- cd /usr/share/redmine/plugins
- git clone https://github.com/taqueci/redmine_wysiwyg_editor.git
- git clone https://github.com/ledsun/redmine_wiki_page_tree.git
- bundle install
- rake redmine:plugins:migrate NAME=redmine_wysiwyg_editor RAILS_ENV=production
- rake redmine:plugins:migrate NAME=redmine_wiki_page_tree RAILS_ENV=production
- touch /usr/share/redmine/tmp/restart.txt
- systemctl restart apache2
But still no Plugin inside. I can not found any description for redmine 5.
Replies (3)
RE: Fresh install 5.0.4. but no plugin visible - Added by Jérôme Gallot about 1 year ago
Hi,
Are you sure that Apache has really restarted ???
RE: Fresh install 5.0.4. but no plugin visible - Added by Adi Meier about 1 year ago
Yes I am. I also restarted the hole server.
And the first access to the page needs some time, like for rebuild cache.
RE: Fresh install 5.0.4. but no plugin visible - Added by Rob Reh about 1 year ago
Maybe it's a permission problem. Most of the time, redmine runs either as user "redmine", "www-data" or something similar. You probably connect to the server as root or user. Your git clone will produce a directory where apache might not have the required rights.
Have a look at the user+group of the files within /usr/share/redmine/ and then do a chown -R on the plugin folder with these settings.