Search found 22 matches

by mickey
14 Jun 2006, 17:21
Forum: Help
Topic: Login Issue
Replies: 1
Views: 3201

Login Issue

I installed mantis v1.0.1 on a remote server. When I try to login using my admin user info, it gives following error message even though information I entered is correct.
“Your account may be disabled or blocked or the username/password you entered is incorrectâ€
by mickey
13 Jun 2006, 16:16
Forum: Customizations
Topic: Redirecting to Advanced Bug Report Page?
Replies: 4
Views: 9583

OK, Got it. Thank you..
by mickey
13 Jun 2006, 16:13
Forum: Help
Topic: Installation along with Custom Fields
Replies: 3
Views: 4532

Thank you for explaining it so well. So, If I transfer my database and install mantis (with my newly added custom functions) on a remote system, it would work just like it does on my development system here. Since complete system(Mantis+Database) is transferred/installed, it would not require me to ...
by mickey
13 Jun 2006, 15:21
Forum: Customizations
Topic: Redirecting to Advanced Bug Report Page?
Replies: 4
Views: 9583

Thanks a lot Narcissus. Your inputs are very helpful.

I tried using all the options you have suggested.
When I select Advanced Report under ‘My Account’, and click on Report Issues menu, it takes me directly to Advanced Report. It works fine.
Setting $g_show_report=ADVANCED_ONLY in config_inc ...
by mickey
13 Jun 2006, 04:31
Forum: Help
Topic: Installation along with Custom Fields
Replies: 3
Views: 4532

Installation along with Custom Fields

Narcissus/Atomoid, I’ve a very basic question on Custom fields. If I want to deploy mantis system (version 1.0.1) with my changes on a different machine, custom fields I have added gets installed as well? Assuming, I can transfer my database (and User) info and use same user account? I’m yet to ...
by mickey
13 Jun 2006, 03:15
Forum: Customizations
Topic: Redirecting to Advanced Bug Report Page?
Replies: 4
Views: 9583

Redirecting to Advanced Bug Report Page?

How do i directly bring up bug_report_advanced_page.php soon after I select a project and click Select Project button while reporting an issue (from Report_Issue top menu)? I want to bypass bug_report_page.php (simple report) since advanced report is more useful for my project.

Also, I was looking ...
by mickey
20 May 2006, 21:59
Forum: Customizations
Topic: Change Colors
Replies: 2
Views: 12467

Yes, it worked perfectly. Thanks a bunch Narcissus..
by mickey
19 May 2006, 17:09
Forum: Customizations
Topic: Change Colors
Replies: 2
Views: 12467

Change Colors

Is there a way to change some of the colors like for Status (New, Feedback, Acknowledged),Menu etc? I tried changing it for example by adding new value to $g_new_color in config_inc.php. But it doesnt seem to make a difference. Please suggest.

Thanks,
Mickey.
by mickey
20 Apr 2006, 21:04
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

I could remove display of custom fields under View Issues page by adding a new column (with check button) in Manage->Custom Field page and checking for it inside custom field display functions (custom_field_api.php). Now, though I don’t see custom field's header and values any more in View_all_bug ...
by mickey
20 Apr 2006, 18:28
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Thanks a lot to both of you for your help. Now I can see custom fields at the beginning in bug report page:)
by mickey
20 Apr 2006, 15:14
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Thank you Narcissus. I need to learn much more about Mantis before I can think of hacking code;)

I've another issue that is kind of critical to my project. In the top menu I added a new link (page) called "employee" for storing employee info. Now, in order to store data entered through this form ...
by mickey
20 Apr 2006, 13:24
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Is it possible to set the position of custom field in bug_report page? Say adding a field called Task after Priority.

How to hide some of the fields (including custom ones) from showing up in View_Issues page?
by mickey
19 Apr 2006, 15:00
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Thank you so much Narcissus..
by mickey
19 Apr 2006, 14:37
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Narcissus/Atomoid,
Once I add a custom field, how do I add a corresponding column in bug_table(?) in the database for that new field? Or is it already added in one of the tables which I can’t figure out? Has it got to do with me adding relevant code in report_bug.php?
by mickey
18 Apr 2006, 05:00
Forum: Customizations
Topic: Adding New tables & columns??
Replies: 25
Views: 371792

Atomoid, I tried doing the same. To begin with, for testing, I added
the following in config_inc.php

$g_main_menu_custom_options = array( array( "Employees", MANAGER, 'employee_page.php') );

employee_page.php here is just a copy of account_page.php. Started with one of the php files already in ...