Search found 8378 matches

by atrol
17 Aug 2010, 15:27
Forum: Help
Topic: Mantis has become very slow
Replies: 5
Views: 3259

Re: Mantis has become very slow

Without providing more details it's hard to say anything. You should start describing your environment (PHP version, Operating system, Database) Is your system also VERY slow after reboot? Did you check logfiles of OS, Database, Webserver? Are there any processes running on yuor server which consume...
by atrol
17 Aug 2010, 11:25
Forum: Help
Topic: File Upload Not Available
Replies: 3
Views: 1959

Re: File Upload Not Available

This is the master switch which is set to ON by default
$g_allow_file_upload = ON;

BTW
you should update to latest 1.2.2
by atrol
17 Aug 2010, 09:13
Forum: Help
Topic: Lost admin login
Replies: 4
Views: 4150

Re: Lost admin login

Your username is stored in database in table mantis_user_table column username
by atrol
17 Aug 2010, 09:09
Forum: Deutsch
Topic: Fehler bei Sprachauswahl deutsch
Replies: 5
Views: 5396

Re: Fehler bei Sprachauswahl deutsch

Schade, dass die Debian Paketierung so hinterherhinkt. Es ist manchmal ganz gut etwas hinterherzuhinken, da neue Versionen durchaus schon mal weniger stabil sind (gilt auch für MantisBT 1.2.x) Aber Debian arbeitet aktuell gerade daran, weil wohl recht schnell klar geworden ist, dass neues PHP und a...
by atrol
17 Aug 2010, 09:01
Forum: Deutsch
Topic: Rechtesystem
Replies: 1
Views: 3244

Re: Rechtesystem

A. Schmidt und B. Müller sollen jeweils die Tickets des anderen sehen können, aber nicht die von C. Huber. C. Huber darf seine Tickets sehen, aber nicht die von A. Schmidt und B. Müller. So auf die Schnelle würde ich sagen, dass das genau der Standardkonfiguration von MantisBT entspricht wenn man m...
by atrol
17 Aug 2010, 08:57
Forum: Help
Topic: File Upload Not Available
Replies: 3
Views: 1959

Re: File Upload Not Available

I didn't try, but changing

Code: Select all

22 => 'upload_file',
to

Code: Select all

22 => 'attachments',
should work
by atrol
17 Aug 2010, 08:50
Forum: Help
Topic: Lost admin login
Replies: 4
Views: 4150

Re: Lost admin login

Click on "Lost password" at login page
by atrol
17 Aug 2010, 06:18
Forum: Deutsch
Topic: Ticketeröffnung per eMail
Replies: 4
Views: 8569

Re: Ticketeröffnung per eMail

Ich habe selbst keine Erfahrung damit, aber es gibt ein Plugin für MantisBT ab Version 1.2
http://git.mantisforge.org/w/EmailReporting.git
by atrol
16 Aug 2010, 18:57
Forum: Help
Topic: Times are incorrect
Replies: 7
Views: 3041

Re: Times are incorrect

It's a pitty, but if i5/OS and DB2 is a must for you I understand this decision.
by atrol
16 Aug 2010, 18:34
Forum: Customizations
Topic: customise report issue "Enter Report Details "
Replies: 11
Views: 23431

Re: customise report issue "Enter Report Details "

Copy the following lines to file config_inc.php and adjust as needed $g_bug_report_page_fields = array( 'category_id', 'view_state', 'handler', 'priority', 'severity', 'reproducibility', 'platform', 'os', 'os_version', 'product_version', 'product_build', 'target_version', 'summary', 'description', '...
by atrol
16 Aug 2010, 18:30
Forum: General Discussion
Topic: Notification of opened issues
Replies: 5
Views: 4216

Re: Notification of opened issues

I did not try myself.
Perhaps this plugin will do the job
http://git.mantisforge.org/w/ServiceLevel.git
by atrol
16 Aug 2010, 18:28
Forum: Help
Topic: Category not to be mandatory
Replies: 1
Views: 1824

Re: Category not to be mandatory

There is a warning in source code

Code: Select all

	 * The following fields must be included:
	 * category_id, summary, description.
Maybe this hint in source code is outdated.
You should also write a mail to help mailing list of MantisBT where some developers are listening
by atrol
16 Aug 2010, 18:24
Forum: Help
Topic: Problem in exporting
Replies: 1
Views: 1156

Re: Problem in exporting

I did not find bug_export.php in version 1.2.1 of MantisBT.
I did also not find any string in MantisBT containg "Failed to create COM object"
Are you using any 3rd party plugin?
by atrol
16 Aug 2010, 18:08
Forum: Deutsch
Topic: Mantis + Timetracker
Replies: 2
Views: 4373

Re: Mantis + Timetracker

einfach die folgenden Zeilen zur Datei config_inc.php hinzufügen und nach Bedarf anpassen /** * Turn on Time Tracking accounting * @global int $g_time_tracking_enabled */ $g_time_tracking_enabled = ON; /** * A billing sums * @global int $g_time_tracking_with_billing */ $g_time_tracking_with_billing ...
by atrol
16 Aug 2010, 18:06
Forum: General Discussion
Topic: Mantis + Timetracker
Replies: 1
Views: 2776

Re: Mantis + Timetracker

add the following lines to file config_inc.php and adjust as needed /** * Turn on Time Tracking accounting * @global int $g_time_tracking_enabled */ $g_time_tracking_enabled = ON; /** * A billing sums * @global int $g_time_tracking_with_billing */ $g_time_tracking_with_billing = OFF; /** * Stop watc...