-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Dear Ichizok
Sorry to write it here but I couldn't find another way to contact with you.
Unfortunately I can't install your redmine_blogs plugin to Bitnami Redmine 3.0.4.1 and maybe you can help me on this.
The following step what I did at the install process.
1/Downloaded the plugin from this url. https://github.com/ichizok/redmine_blogs
2/copied to here /opt/bitnami/apps/redmine/htdocs/plugins/
3/created the table manually (because I can't run the migration script)
CREATE TABLE blogs (
id int(11) NOT NULL AUTO_INCREMENT,
summary varchar(255) DEFAULT NULL,
description text,
title varchar(255) NOT NULL DEFAULT '',
comments_count int(11) DEFAULT '0',
created_on datetime DEFAULT NULL,
project_id int(11) NOT NULL DEFAULT '0',
author_id int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY blogs_index_on_project_id (project_id),
KEY blogs_index_on_author_id (author_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Then the plugin searched the acts-as-taggable. I install with command "gem install acts-as-taggable-on".
Then I solve the plugin can found this gem(required acts-as-taggable-on did not worked so I changed to full path).
But when the gem is loaded the gem cant found it's own files ("Message from application: cannot load such file -- acts_as_taggable_on/default_parser (LoadError)") but these files exist at this place.
Unfortunately I am not familiar with ruby so I stuck here.
Could you be nice to suggest me any solution to fix this problem?
Your Sincerely,
[email protected]