Search found 509 matches

by thraxisp
19 Mar 2005, 16:31
Forum: General Discussion
Topic: Rqst: Change 'threshold' parameters to Arrays
Replies: 16
Views: 37308

This feature has been submitted to CVS. There is also a new UI to change most of the workflow related parameters.

Comments are welcome...
by thraxisp
19 Mar 2005, 13:26
Forum: General Discussion
Topic: Updating issue reports
Replies: 5
Views: 11212

Could you file an issue to this effect at http://bugs.mantisbt.org/ ?
by thraxisp
17 Mar 2005, 19:45
Forum: Help
Topic: bugnote or bugnotes
Replies: 1
Views: 5664

The email system has two parts (actions and recipients). The actions are what you have listed (change in owner, bugnote, sponsor, relationship, or change in status to any defined status or reopened, or deleted). Anytime one of these actions takes place, the email generator is kicked in. The recipien...
by thraxisp
17 Mar 2005, 12:14
Forum: Help
Topic: Adding a new Issue Status type - clear instructions please ?
Replies: 1
Views: 6529

2) 'define(XXX, 52)'d a new value in mantis/core/custom_constant_inc.php
The custom constant file is "mantis/custom_constant_inc.php".

We are looking into a bettwe way to capture the manual, and could always use some help in this area.
by thraxisp
17 Mar 2005, 12:09
Forum: Help
Topic: Groups email notification handling
Replies: 1
Views: 5582

The current mailing works based on bug status, rather than who submitted the issue. You can set it up so that all reporters are informed of new bugs. There is a detailed description in the manual about half way down the page on http://manual.mantisbt.org/manual.confi ... .email.php.
by thraxisp
16 Mar 2005, 14:27
Forum: General Discussion
Topic: Password reset URL's get blank screen
Replies: 1
Views: 7529

I believe that there is a bug in 0.19.2 that may cause this behaviour (#4995).
by thraxisp
15 Mar 2005, 03:33
Forum: Help
Topic: Mantis creates only blank pages after install
Replies: 6
Views: 11447

There are still some issues using PHP 5 with Mantis. These have been worked out in the next release. You may want to look at #4995 for one patch.
by thraxisp
15 Mar 2005, 03:25
Forum: Help
Topic: Problem with mail notification
Replies: 8
Views: 13636

It sounds like the mail interface is not working at all. Have you tried the mailer test in admin/check.php?
by thraxisp
13 Mar 2005, 23:07
Forum: Help
Topic: Problem with mail notification
Replies: 8
Views: 13636

Do you still have '$g_allow_signup' set? $g_allow_signup = ON requires $g_send_reset_password = ON. You need to either create users manually via the Manage -> Manage Users -> Create User route (setting the password manually), or allow signup (and reset_password).
by thraxisp
12 Mar 2005, 14:40
Forum: Help
Topic: Problem with mail notification
Replies: 8
Views: 13636

Local changes are made in the config_inc.php file in the main directory. There is a sample file there in the normal distribution (config_inc.php.sample). This allows you to change settings and not have them overridden by the next release. Personally, I don't delete the admin directory. I just make i...
by thraxisp
12 Mar 2005, 14:35
Forum: Help
Topic: Adding a status
Replies: 1
Views: 5746

This situation is covered in the manual at http://manual.mantisbt.org/manual.custo ... values.php
by thraxisp
12 Mar 2005, 14:33
Forum: Help
Topic: Make bug private
Replies: 1
Views: 5746

You can set "$g_set_view_status_threshold = NOBODY;" and "$g_change_view_status_threshold = NOBODY;". This will not allow anyone to change the view state from the default.
by thraxisp
12 Mar 2005, 14:26
Forum: General Discussion
Topic: Best Practices for setting up Projects, Categories, etc.
Replies: 2
Views: 9592

My suggestion would be to set up a project per product. You can then set up releases for 1.0, 1.5, and 2.0. The issues can be assigned to releases using the fixed in version field. (This also allows the Changelog to work properly). I would set up the categories to cover major pieces of the functiona...
by thraxisp
10 Mar 2005, 03:11
Forum: Help
Topic: Problem with mail notification
Replies: 8
Views: 13636

You can turn off the email for password change by setting "$g_send_reset_password = OFF;". This will leave the initial password blank. As for the mail problem, I would check which phpMailer mode you are using. The smtp_* parameters are only used when "$g_phpMailer_method = 2;". B...
by thraxisp
09 Mar 2005, 14:17
Forum: Help
Topic: add_relationship threshold
Replies: 1
Views: 6246

Adding a relationship is controlled by the $g_update_bug_threshold parameter.

Try

Code: Select all

$g_update_bug_threshold = DEVELOPER;
in your config_inc.php file. Note that this will allow developers to update the information on an issue as well.