Redmine Blog Plugin

Added by Andrew Chaika about 4 years ago

I wish to introduce Redmine Blogs Plugin 0.0.3 version:
Features:
  • Blog for users, not related to project
  • Posts commenting
  • Permissions: view, create, comment
  • Post tagging
  • Attach files/images to posts
  • Tag cloud
  • Filter posts by user, tag
TODO:
  • RSS
  • Activity/event

Replies (80)

RE: Redmine Blog Plugin - Added by No Name about 1 year ago

I have the same problem as jeff.

RE: Redmine Blog Plugin - Added by Tingel Tangel 10 months ago

Does anyone tried to get the blog plugin on redmine version 2.x running?

I'm trying, but still there is a lot work to do. F.e. the scope from activity provider changed and i'm getting an sql error

SQLite3::SQLException: no such column: projects.status: SELECT  "blogs".* FROM "blogs"  WHERE (blogs.author_id = 1) AND (projects.status=1) ORDER BY blogs.id DESC LIMIT 10

and of course using acts_as_taggable_on, because acts_as_taggable_on_steroids doesn't work well with rails 3

best regards tingel2k

RE: Redmine Blog Plugin - Added by Marcel Castilho 10 months ago

Tingel Tangel wrote:

Does anyone tried to get the blog plugin on redmine version 2.x running?

Hi Tingel,

I've gone through this whole proccess yesterday.

After trying to fix the code (v0.1.0), I found this project: https://github.com/ichizok/redmine_blogs

Works fine on Redmine 2.0.3.stable.

Regards,

Marcel

RE: Redmine Blog Plugin - Added by Tingel Tangel 10 months ago

thanks i'll try it tomorrow, did you fix the provider problem too? Because i got the problem with the permission flag in the options. But i changed the acts_as_activity_privider and added an :no_projekt symbol, so the permission doesn't generate the project.state = 1 sql statement.

sincerely tingel2k

RE: Redmine Blog Plugin - Added by Tingel Tangel 9 months ago

I got a lot of strange errors if redmine_blogs is in the plugin directory in my redmine. The problem seems to be only in development mode.
My guessing that the load order of the plugin and redmine files are wrong.
As a first patch I used this:

application_controller.rb : 

if Rails.env.development?
  require_dependency "#{Rails.root}/plugins/redmine_blogs/init.rb" 
  require_dependency "#{Rails.root}/lib/redmine/hook.rb" 
  require_dependency "#{Rails.root}/lib/redmine/themes.rb" 
end

Is there something better I could do?

1 2 3 4 (76-80/80)