-
Reset password and give admin rights to redmine account
First of all run mysql: mysql --user=root --password=your_password You can find your connection parameters in {your redmine folder}/htdocs/config/database If credentials are correct you will see hello message from MySql console: Now you need to reveal all databases on current mysql server, run this command: SHOW DATABASES; You will see something like this: We need to… -
Highlight overdue issues in redmine
To higlight overdue issues in redmine, add following styles to your application.css file: tr.issue.overdue td.id a, tr.issue.overdue td.subject a, .issue.overdue td.due-date { color: #f00; } tr.private td.subject a:before { content: ''; display: inline-block; margin: 0 3px 0 -5px; height: 11px; vertical-align: middle; border-left: 2px solid #d22; border-right: 1px solid #d22; } Original article: http://www.redmine.org/issues/20812 -
Cron task for handling email in redmine
Go to redmine folder and copy use_redmine file: cp use_redmine proceed_mail Edit new document: nano ./proceed_mail Replace text with following (put your variables): #!/bin/bash . /opt/redmine-3.3.2-2/scripts/setenv.sh rake -f /opt/redmine-3.3.2-2/apps/redmine/htdocs/Rakefile redmine:email:receive_imap RAILS_ENV="production" host=mail_server [email protected] password=your_password move_on_success=read move_on_failure=failed To run Cron config, exec command: crontab -e Add following line to the end of the file (put your… -
Useful redmine plugins and how to install them in bitnami redmine
List of plugins: http://www.redmine.org/plugins/boolean_query To install plugins, exec following commands in redmine htdocs folder(for me it's "/opt/bitnami/apps/redmine/htdocs"): bundle install bundle exec rake redmine:plugins:migrate RAILS_ENV=production And restart apache. I use following command to do it: /opt/redmine-3.3.2-2/ctlscript.sh restart apache -
Installing and configuring Bitnami Redmine
Lets get rid of app prefixes, open file: nano /opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf Comment second line, like this: #Include "/opt/bitnami/apps/redmine/conf/httpd-prefix.conf" Save file by pressing Ctrl + X. Open file: nano /opt/bitnami/apache2/conf/bitnami/bitnami-apps-vhosts.conf Add following line: Include "/opt/bitnami/apps/redmine/conf/httpd-vhosts.conf" Save file by pressing Ctrl + X. Open file: nano /opt/bitnami/apps/redmine/conf/httpd-vhosts.conf Add following text with your parameters, change ServerName and ServerAlias: <VirtualHost…
Loading posts...