Thanks for looking into that issue.
The broken link looks like that
https://server.ac.nz/repositories/1/committers
I tried to work around these links by adding the sub-uri path
https://server.ac.nz/redmine/repositories/1/committers
https://server.ac.nz/redmine/projects/myproject/repositories/1/committers
But they just result in a redmine404 error page.
In contrast to that the Project->Settings->Members->edit & delete buttons
https://server.ac.nz/redmine/projects/myproject/settings#
work well.
I followed the fastcgi & sub-uri instructions in:
http://www.redmine.org/projects/redmine/wiki/HowTo_configure_Apache_to_run_Redmine
I hope, I've described the set-up precise enough.
in the redmine source code tree, I do a svn diff:
Index: config/routes.rb
===================================================================
--- config/routes.rb (revision 9889)
+++ config/routes.rb (working copy)
@@ -16,6 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
RedmineApp::Application.routes.draw do
+scope "/redmine" do
root :to => 'welcome#index', :as => 'home'
match 'login', :to => 'account#login', :as => 'signin'
@@ -332,3 +333,4 @@
end
end
end
+end
Index: config/environment.rb
===================================================================
--- config/environment.rb (revision 9889)
+++ config/environment.rb (working copy)
@@ -1,3 +1,4 @@
+ENV['RAILS_ENV'] ||= 'production'
# Load the rails application
require File.expand_path('../application', __FILE__)
@@ -12,3 +13,5 @@
# Initialize the rails application
RedmineApp::Application.initialize!
+Redmine::Utils::relative_url_root = "/redmine"
+