Search found 4 matches

by knockNrod
29 Sep 2015, 12:46
Forum: Help
Topic: Synchronization
Replies: 1
Views: 2358

Re: Synchronization

Ok, so far, I've figured out that this is referred to as an Occasionally Connected System. MySQL replication does support this, but the implications are that the underlying application should be built to also support the consequences of this, and I'm guessing Mantis is not. For example, what happens ...
by knockNrod
28 Sep 2015, 16:05
Forum: Help
Topic: Synchronization
Replies: 1
Views: 2358

Synchronization

Is it possible to configure two mantis installations to allow for distributed bug tracking? I have a copy of Mantis installed on a VM I take with me to the field and run on my laptop. Now management has seen it and wants a copy on a central server so they can track progress, but I can't always reach ...
by knockNrod
15 Sep 2015, 20:43
Forum: General Discussion
Topic: Change project link in Category column to show project view.
Replies: 1
Views: 4368

Re: Change project link in Category column to show project v

There is a similar change possible in my_view_inc.php, line 359


#echo '[', string_display_line( project_get_name( $t_bug->project_id ) ), '] '; rod
$t_project_name = project_get_name( $t_bug->project_id);
echo '[', print_link( "project_page.php?project_id=$t_bug->project_id", $t_project_name ...
by knockNrod
15 Sep 2015, 19:27
Forum: General Discussion
Topic: Change project link in Category column to show project view.
Replies: 1
Views: 4368

Change project link in Category column to show project view.

I'd like to suggest a patch in columns_api.php's print_column_category_id function so that when you View Issues for All Projects, the project name hyperlink takes you to a view of the project details similar to how the developer name link works in the Status column.


#print_view_bug_sort_link ...