Hi all,
I am trying to extend my Redmine environment with plugins but i encounter problems.
But i keeps encounter problems. Does some one knows a redmine plugin that should work on Debian so that i can figure out what i am doing wrong.
One of the issues 1st issues that pops up is the error "LoadError: cannot load such file -- gravatar"
after the "rake redmine:plugins RAILS_ENV=production" execution
this while the file /usr/share/redmine/lib/plugins/gravatar/lib/gravatar.rb exists
can some one please help me out.
Best regards Bram
Package: redmine Version: 3.0~20140825-5
Package: redmine-mysql Version: 3.0~20140825-5
cat /etc/apache2/sites-enabled/redmine.conf
NameVirtualhost *:443
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName redmine
PassengerDefaultUser www-data
# FcgidInitialEnv for module mod_fcgid
FcgidInitialEnv RAILS_RELATIVE_URL_ROOT ""
Alias "/plugin_assets/" /var/cache/redmine/default/plugin_assets/
DocumentRoot /usr/share/redmine/public
<Directory "/usr/share/redmine/public">
Options +FollowSymLinks +ExecCGI
Order allow,deny
Allow from all
RewriteEngine On
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} dispatch.fcgi$
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/private/redmine.crt
SSLCertificateKeyFile /etc/ssl/private/redmine.key
</VirtualHost>
</IfModule>