Search found 21 matches

by autra
16 Sep 2008, 16:05
Forum: General Discussion
Topic: Workflow validation for new status on different projects.
Replies: 4
Views: 6349

Re: Workflow validation for new status on different projects.

It seems that you have some specific project settings...

Go to config report, and delete all options called status_enum_workflow, . Then be sure that all projects is selected on top right of your page and redefine your workflow.

Or you can identify the wrong setting in config report.

By the way ...
by autra
12 Sep 2008, 11:35
Forum: Help
Topic: What encryption used for passwords
Replies: 3
Views: 6382

Re: What encryption used for passwords

It is md5
by autra
10 Sep 2008, 15:25
Forum: Customizations
Topic: Unofficial way to customize Severity & Priority
Replies: 9
Views: 28193

Re: Unofficial way to customize Severity & Priority

If you have some @@, it is because the $s variable in your lang files aren't set, I believe.

Create them in custom_strings_inc.php...
by autra
10 Sep 2008, 12:42
Forum: Help
Topic: Database management all messed up
Replies: 1
Views: 2127

Re: Database management all messed up

Before making your upgrade, delete your navigator cache and cookies, close your navigatr, restart it and upgrade.

The upgrade didn't work on my mantis if I don't do that.

Then, delete the admin directory on your server -> that should "make it shut up" ;-)
by autra
10 Sep 2008, 12:40
Forum: Help
Topic: Access level for our customers
Replies: 2
Views: 2518

Re: Access level for our customers

Make private bugs/bugnotes, and set the permission in manage > manage configuration > workflow threshold
by autra
10 Sep 2008, 12:29
Forum: General Discussion
Topic: Access level for our customers
Replies: 1
Views: 2713

Re: Access level for our customers

You could make private bugs, and private notes, and set up the view private bugs and view private notes thresholds to "tester". (in manage > manage configuration > workflow threshold

The developer and tester make private bugs and notes if they don't want reporter to see them.
by autra
05 Sep 2008, 09:44
Forum: Help
Topic: check.php says ok, but emails not working V. 1.1.2
Replies: 8
Views: 7736

Re: check.php says ok, but emails not working V. 1.1.2

Did you check these options ?

$g_send_reset_password = ON;

$g_enable_email_notification = ON;

$g_limit_email_domain = OFF;

(something useful : ctrl+f and search "mail" in default_config_inc.php

Your webmaster account (mantis@xxx.com) and your admin account (steve@xxx.com) are on the same ...
by autra
03 Sep 2008, 14:14
Forum: General Discussion
Topic: Problem with Email Notification
Replies: 30
Views: 32279

Re: Problem with Email Notification

Maybe there is a limit of the number of mail Mantis can send in a day...
by autra
01 Sep 2008, 08:43
Forum: Help
Topic: MantisConnect plugin needed?
Replies: 1
Views: 2648

Re: MantisConnect plugin needed?

It depends on what version of mantis you use.
Mantisconnect is included since version... I don't remember :lol: !!

You need mantisconnect on mantis' side, and eclipse plugin on eclipse's side.

Which version of mantis do you use ?

when you go to : http://yourmantis/api/soap/mantisconnect.php ...
by autra
01 Sep 2008, 08:40
Forum: Customizations
Topic: removing a status
Replies: 9
Views: 11714

Re: removing a status

Mantis displays @Number@ when it finds something it cannot display.

You suppress the 80:resolved, but I think it is still in the workflow. So mantis cannot display it because you suppress it, but try to do it because you set it up in the workflow (maybe).

go to manage > manage configuration ...
by autra
29 Aug 2008, 13:43
Forum: Help
Topic: Custom Field in Roadmap Page
Replies: 10
Views: 9537

Re: Custom Field in Roadmap Page

If the function custom_function_override_roadmap_print_issue doesn't exist, you must create it and put your modified function here. Mantis will call custom_function_override_roadmap_print_issue instead of custom_function_default_roadmap_print_issue.
It allows you not to change the default function.
by autra
29 Aug 2008, 13:39
Forum: Help
Topic: Public RSS feeds?
Replies: 4
Views: 3723

Re: Public RSS feeds?

$g_anonymous_account = 'anonymous'; only if the name of the account is 'anonymous'. Otherwise if the name is 'guest', it must be 'guest', mustn't it ?
by autra
28 Aug 2008, 08:21
Forum: Help
Topic: Updating to current release
Replies: 4
Views: 3724

Re: Updating to current release

From which version do you want to update ?
by autra
27 Aug 2008, 15:32
Forum: Help
Topic: Updating to current release
Replies: 4
Views: 3724

Re: Updating to current release

I had the same problem.

From which version of mantis do you want to upgrade ?

My solution :
-Reinstall the previous version.
-Close your mantis session
-Delete navigator cache, cooking.
-Upgrade your code
-Restart your navigator and run the DB upgrade.

It works for me. And if the upgrade process ...