Search found 8378 matches

by atrol
24 May 2010, 15:44
Forum: Help
Topic: Can only login using admin acct (version 1.2.0)
Replies: 1
Views: 1283

Re: Can only login using admin acct (version 1.2.0)

korosh wrote:A couple months ago I downloaded, installed and configured Mantis
You should first update to latest stable version which is 1.2.1 at the moment
by atrol
24 May 2010, 15:38
Forum: Help
Topic: 1.1.8 Question
Replies: 3
Views: 1936

Re: 1.1.8 Question

use upload_project_file_threshold for option and 40 for value
by atrol
24 May 2010, 11:16
Forum: Help
Topic: Disable "secure session" prompt
Replies: 3
Views: 5675

Re: Disable "secure session" prompt

Is there a list of all possible options that could be configured? config_defaults_inc.php is the best source for this (better than any manual ;-) ) I don't understand the security risk. If you are interested in further details, google for "Session hijacking" When someone logon to mantis f...
by atrol
24 May 2010, 11:01
Forum: Deutsch
Topic: Automatischer Email Versand
Replies: 9
Views: 9589

Re: Automatischer Email Versand

Der Endtermin wird pro Eintrag manuell erfasst. Dazu muss dieses Feature zunächst aktiviert werden. z.B. durch folgende Zeilen in config_inc.php entsprechend den gewünschten Rechten $g_due_date_update_threshold = MANAGER; $g_due_date_view_threshold = DEVELOPER; Beispiele für den Cron Job sind in der...
by atrol
24 May 2010, 10:46
Forum: General Discussion
Topic: Configure settings via webinterface
Replies: 2
Views: 3277

Re: Configure settings via webinterface

Is there any reason why you dont' use this page?
Manage -> Manage Configuration -> Workflow Transitions
by atrol
24 May 2010, 10:43
Forum: General Discussion
Topic: Could Mantis be used for this?
Replies: 1
Views: 1906

Re: Could Mantis be used for this?

I think MantisBT can be used for this.
Maybe the best way is to setup a test system and show it to your friend.
by atrol
24 May 2010, 10:35
Forum: Help
Topic: 1.1.8 Question
Replies: 3
Views: 1936

Re: 1.1.8 Question

Did you enter the complete line in field "Configuration Option"?
You have to split option and value.
by atrol
21 May 2010, 22:43
Forum: Help
Topic: "Main" Page
Replies: 1
Views: 2354

Re: "Main" Page

set
$g_news_enabled = ON;
not
$g_news_enabled = On;
by atrol
21 May 2010, 16:59
Forum: Help
Topic: Disable "secure session" prompt
Replies: 3
Views: 5675

Re: Disable "secure session" prompt

since i expect problems during the ussage of it by the testers using mantis. Which problems do you expect? Is there a setting where i could switch this option off? Adding the following line to your config_inc.php should do the job $g_session_validation = OFF; but there is the following warning in d...
by atrol
21 May 2010, 10:31
Forum: Deutsch
Topic: Zeitversetzte Erinnerung (autom. Wiedervorlage)
Replies: 1
Views: 4540

Re: Zeitversetzte Erinnerung (autom. Wiedervorlage)

ich möchte aber (z.B. nach einem Monat) automatisch an einen Eintrag erinnert werden. Eine solche Funktion gibt es doch bestimmt in Mantis, ich kann nur nichts finden... Soweit ich weiß gibt es nichts derartiges, es gibt lediglich die Monitoring Funktion mit der man sich benachrichtigen lassen kann...
by atrol
21 May 2010, 10:18
Forum: Help
Topic: Database migration from within MySQL (howto?)
Replies: 2
Views: 1540

Re: Database migration from within MySQL (howto?)

1. export dump on old machine
2. import dump on new machine
3. update to 1.2.1 following the instruction in file doc/INSTALL chapter UPGRADING
by atrol
20 May 2010, 12:13
Forum: General Discussion
Topic: Queue for issues?
Replies: 7
Views: 4609

Re: Queue for issues?

by atrol
20 May 2010, 11:03
Forum: General Discussion
Topic: Queue for issues?
Replies: 7
Views: 4609

Re: Queue for issues?

What about three clicks to get your todo list ordered by priority?

1. Main
2. Open and assigned to me
3. P (click on the priority column of the list to sort)
by atrol
20 May 2010, 08:32
Forum: General Discussion
Topic: Queue for issues?
Replies: 7
Views: 4609

Re: Queue for issues?

Do you use "due date" of MantisBT to store the date when an issue should be resolved?
by atrol
20 May 2010, 08:19
Forum: General Discussion
Topic: last_updated field behavior
Replies: 4
Views: 5015

Re: last_updated field behavior

Have a look at the code snippet with constants that I attached in my previous post. Select all records of mantis_bug_history_table where type is what you are interested in. For example something like SELECT date_modified FROM mantis_bug_history_table where bug_id = <yourBugId> AND type IN (2,3,4) OR...