Search found 74 matches

by Buga
05 Jun 2009, 11:00
Forum: Help
Topic: Project
Replies: 1
Views: 1296

Re: Project

Its better to make such changes in the file custom_strings_inc.php in the mantis folder. if it dont exist create it. here is an exmaple code if ( $g_active_language === 'german' ) $s_ACAD_Interface ="Schnittstelle"; else $s_ACAD_Interface ="Interface"; This way you dont have to r...
by Buga
05 Jun 2009, 10:56
Forum: Help
Topic: Custom field string is too short
Replies: 3
Views: 2344

Re: Custom field string is too short

I think Mantis has no standard feature for this. But I needed the same thing so I simply increased the length of the database field to 500. To enter data in the Mantis interface I used Firefox Developer Plugin to disable the maxlength of all input fields. Alternativly you enter your value directly t...
by Buga
03 Jun 2009, 10:58
Forum: General Discussion
Topic: Adding other users to monitor an issue
Replies: 4
Views: 4324

Re: Adding other users to monitor an issue

I think this feature exists already...
You can add people to a reminder
the link is at the top of the bug details page

We use 1.1.1 too
by Buga
03 Jun 2009, 09:56
Forum: Help
Topic: feed Mantis fields to external application
Replies: 2
Views: 1647

Re: feed Mantis fields to external application

I had a simple request for mantis were I simply wrote a little php file which reads data directly from the database and does the needed stuff with it. We needed a solution to inform people about the new and resolved status of tickets they reported. Problem is that these people dont have mantis accou...
by Buga
03 Jun 2009, 09:49
Forum: Help
Topic: Update Mantis 1.1.6 to 1.1.7
Replies: 5
Views: 5437

Re: Update Mantis 1.1.6 to 1.1.7

read the docs please.. its mentioned there but as I am kind I will give you the basic steps: - make backup of your database - make backup of all files - download new mantis version - copy over all files over your current mantis installation - files like config_inc.php or the strings fille wont be ch...
by Buga
29 May 2009, 08:10
Forum: Customizations
Topic: Customizing with XML
Replies: 3
Views: 3050

Re: Customizing with XML

I like the web interface alot as you have the possibility to create configurations for speical projects and for single users.
And of cause its safer to add or remove an entry to the database than changin the source code.
by Buga
29 May 2009, 08:01
Forum: Help
Topic: How Auto Assign on New status not on category
Replies: 1
Views: 1041

Re: How Auto Assign on New status not on category

check the default config file and search for g_notify_flags.
Main problem is that this setting is for all projects in Mantis and not for a special project.

If anyone has an idea how it is possible to define this option for a single project let me know:)
by Buga
28 May 2009, 08:20
Forum: Help
Topic: Set notify_flags in Manage Configuration
Replies: 2
Views: 2754

Set notify_flags in Manage Configuration

Hi I need to set the config variable notify_flags for ONE project so that all developers will get mails for all new issues: $g_notify_flags['new']['threshold_min'] = DEVELOPER; $g_notify_flags['new']['threshold_max'] = DEVELOPER; Sure I can add this in the config file but I only need it for one proj...
by Buga
25 May 2009, 07:53
Forum: General Discussion
Topic: Can issues be moved to other projects or subprojects?
Replies: 2
Views: 2354

Re: Can issues be moved to other projects or subprojects?

yes you can move your issues to any other project. But it would be wise to have the same customfields, categorys and versions in the target project.
by Buga
13 May 2009, 08:56
Forum: Customizations
Topic: How to add Complex configuration options
Replies: 3
Views: 4304

Re: How to add Complex configuration options

you can define the type while adding a new option. does this not work for you?
I never had such problems
by Buga
13 May 2009, 08:55
Forum: Help
Topic: Second project & after projects report id not start from 1
Replies: 1
Views: 1001

Re: Second project & after projects report id not start from 1

No there is no possibility to change this.

it works like designed. each ticket has his unique id. Otherwise you would get problems if you talk about Ticket 103 as you dont know which project is meant
by Buga
01 May 2009, 21:14
Forum: Help
Topic: Administrator member of all projects?
Replies: 4
Views: 2087

Re: Administrator member of all projects?

try this:
/**
* Threshold needed to be automatically included in private projects
* @global int $g_private_project_threshold
*/
$g_private_project_threshold = ADMINISTRATOR;
by Buga
15 Apr 2009, 12:20
Forum: Help
Topic: Can we use "realname" instead of "username" for Assign To?
Replies: 1
Views: 1364

Re: Can we use "realname" instead of "username" for Assign To?

add $g_show_realname = ON; to your config_inc.php
by Buga
11 Apr 2009, 09:00
Forum: Help
Topic: Administrator member of all projects?
Replies: 4
Views: 2087

Re: Administrator member of all projects?

Dont have access to mantis code atm but in the config file is a treshold variable which controls which user rights should have acess to all projects.
in the standard it is set to 90(admin) just change it to 100(none)
than you need to add all admins manually to the projects.