Actions
Defect #10699
closedGraph activities plugins error with redmine 1.4.x
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Core Plugins
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Invalid
Affected version:
Description
Hi,
The redmine_graph_activities plugins failed with redmine 1.4.0
I've updated to latest version and remigrate plugins into database, but nothing:
ActionView::TemplateError (No route matches {:controller=>"graph_activities" ....
And renderring an 500 Internal error!
It's just for help someone in this case.
Thanks
Updated by Etienne Massip over 12 years ago
- Status changed from New to Closed
- Resolution changed from Fixed to Invalid
Please contact the plugin author and/or post in Plugins forum, the tracker is for Redmine core.
Updated by Cassiano Monteiro over 12 years ago
You can work around it by creating the file config/routes.rb (inside the plugin folder), with the contents following that pattern:
ActionController::Routing::Routes.draw do |map| map.connect '/controller_name/action_name', :controller => 'controller_name', :action => 'action_name' end
Replace the controller_name and action_name by the ones you are getting on your error log. Create one line like that for each route that you get an error.
Actions