Search found 74 matches

by Buga
09 Aug 2009, 16:59
Forum: Help
Topic: CSV export help
Replies: 12
Views: 15062

Re: CSV export help

This is a Mantis 1.2 feature
by Buga
04 Aug 2009, 21:18
Forum: Help
Topic: Enable access to Updater to view summary
Replies: 6
Views: 8548

Re: Enable access to Updater to view summary

simply add config for each user...
you can choose project and user on the config screen
by Buga
03 Aug 2009, 08:21
Forum: Help
Topic: Enable access to Updater to view summary
Replies: 6
Views: 8548

Re: Enable access to Updater to view summary

go to web configuration and add the following config option Name: view_summary_threshold value: 40 40 stands for updater. you can also add this for other roles define( 'ANYBODY', 0 ); define( 'VIEWER', 10 ); define( 'REPORTER', 25 ); define( 'UPDATER', 40 ); define( 'DEVELOPER', 55 ); define( 'MANAG...
by Buga
03 Aug 2009, 08:13
Forum: Help
Topic: Umlaut in custom_strings.php
Replies: 2
Views: 2329

Re: Umlaut in custom_strings.php

I had the same issue but as I didnt want to waste to much time I simply wrote the umlaut in the "wrong" way.
eg.
ü = ü
ä = ä
ö = ö

If you find a proper solution let me know:)
by Buga
29 Jul 2009, 22:04
Forum: Help
Topic: Upgrade Mantis 1.0.6 to 1.1.8
Replies: 4
Views: 2307

Re: Upgrade Mantis 1.0.6 to 1.1.8

http://sourceforge.net/projects/mantisbt/files/

but I dont see a Mantis 1.0.6 there.

I would simply copy all files + db to your test system and try the upgrade. Thats a better test scenario than installing the same versions as there might be some differences...
by Buga
24 Jul 2009, 07:27
Forum: Help
Topic: How customize category
Replies: 2
Views: 1738

Re: How customize category

You can change the translation for this field. create a file custom_strings_inc.cfg and enter the following code <?PHP $s_all_projects = 'All Projects'; ?> if you are using different langauges you could do it like this if ( $g_active_language === 'german' ) $s_all_projects ="Alle Projekte"...
by Buga
24 Jul 2009, 07:11
Forum: Help
Topic: Upgrade Mantis 1.0.6 to 1.1.8
Replies: 4
Views: 2307

Re: Upgrade Mantis 1.0.6 to 1.1.8

you can download the latest version and upgrade directly

but of cause make a backup before
by Buga
22 Jul 2009, 11:52
Forum: Help
Topic: Want Custom fields in Excel Export
Replies: 1
Views: 2047

Re: Want Custom fields in Excel Export

go to configuration report and add a new config entry: test it first with only 1 project and your username config option : csv_columns type: complex value: array ( 0 => 'id', 1 => 'project_id', 2 => 'severity', 3 => 'category', 4 => 'date_submitted', 5 => 'last_updated', 6 => 'summary', 7 => 'status...
by Buga
22 Jul 2009, 11:42
Forum: Help
Topic: how to make bug really "private"
Replies: 3
Views: 2374

Re: how to make bug really "private"

check your config for this parameter:
/**
* threshold for viewing private news
* @global int $g_private_news_threshold
*/
$g_private_news_threshold = DEVELOPER;

If you want that nobody can see private issues set it to NOBODY
by Buga
03 Jul 2009, 07:06
Forum: Help
Topic: How to find out url arguments or how to extend url?
Replies: 2
Views: 2189

Re: How to find out url arguments or how to extend url?

there is a function called Create Permalink

This functions creates an url with all parameter inclduing the filter
by Buga
03 Jul 2009, 07:05
Forum: Help
Topic: Install Database failed
Replies: 2
Views: 1671

Re: Install Database failed

looks like your user dont have the right to create tables or even the whole database.
by Buga
01 Jul 2009, 08:25
Forum: Help
Topic: Best way to upgrade from Mantis 0.19.1 to Mantis 1.2.0?
Replies: 4
Views: 3116

Re: Best way to upgrade from Mantis 0.19.1 to Mantis 1.2.0?

You can find the upgrade.php in the admin folder.
If you dont have it I would suggest to downlaod mantis again;)
by Buga
01 Jul 2009, 07:23
Forum: Help
Topic: Allow Manager to create Subprojects?
Replies: 0
Views: 1742

Allow Manager to create Subprojects?

Hi I would like to allow the Managers of a project to create subprojects. The Manager should only be allowed to create new projects below the project where he has the Manager role. I tryed to set create_project_threshold to 70 for this project. This way all managers in this project have the right to...
by Buga
29 Jun 2009, 07:28
Forum: Help
Topic: Best way to upgrade from Mantis 0.19.1 to Mantis 1.2.0?
Replies: 4
Views: 3116

Re: Best way to upgrade from Mantis 0.19.1 to Mantis 1.2.0?

Did you try the normal Mantis Update routine?
by Buga
29 Jun 2009, 07:07
Forum: General Discussion
Topic: Sync mantis and another app
Replies: 3
Views: 3613

Re: Sync mantis and another app

I wrote my own my register account page. My Users only have to give their mail adress + a password and my script searches all data from another datasource. I didnt touch any matnis source for this. I simply insert the new user data into the mantis database and this works quite good