View Issue Details

IDProjectCategoryView StatusLast Update
0012113mantisbtperformancepublic2013-02-01 18:53
ReporterKarlReichert Assigned Todregad  
PrioritynormalSeverityfeatureReproducibilityN/A
Status closedResolutionno change required 
Product Version1.2.1 
Summary0012113: Configuration Report should be located somewhere else in the web interface
Description

Currently, the Configuration Report is located right under "Manage - Manage Configuration - Configuration Report". Because of that, when selecting "Manage - Manage Configuration", it's displayed.

I have a lot of projects with a lot of per-project specific settings, which are all listed at page "Configuration Report" (because these settings are stored in the database). That's why every time my webserver needs a few seconds to generate the configuration report. So every time I want to change something in the configuration, I have to wait in between a few seconds, until the "Configuration Report" is generated, before I can go one, e.g. let's say navigating to page "Workflow Transitions".

It would be nice, if another page would be the default when selecting "Manage - Manage Configuration", one that is loading much faster, no matter, how much customization is made. The "Configuration Report" should be generated only, then selecting it from a button or menue. This would speed up my work with MantisBT a lot!

TagsNo tags attached.
Attached Files
fix-12113.patch (585 bytes)   
diff --git a/core/html_api.php b/core/html_api.php
index 9a4a621..7590c12 100644
--- a/core/html_api.php
+++ b/core/html_api.php
@@ -934,7 +934,7 @@ function print_manage_menu( $p_page = '' ) {
 	$t_manage_project_menu_page = 'manage_proj_page.php';
 	$t_manage_custom_field_page = 'manage_custom_field_page.php';
 	$t_manage_plugin_page = 'manage_plugin_page.php';
-	$t_manage_config_page = 'adm_config_report.php';
+	$t_manage_config_page = 'manage_config_columns_page.php';
 	$t_manage_prof_menu_page = 'manage_prof_menu_page.php';
 	$t_manage_tags_page = 'manage_tags_page.php';
 
fix-12113.patch (585 bytes)   

Relationships

related to 0013680 closeddregad Configuration page takes a very long time to load 

Activities

dregad

dregad

2011-10-25 12:19

developer   ~0030067

You can fix this by changing the target for the link in html_api.php (for example in the attached patch, going by default to the config columns page.

dregad

dregad

2013-01-22 20:43

developer   ~0034867

With the implementation of performance enhancements and filtering on the config report page in 1.2.13, this should no longer be needed.