Search found 95 matches

by DaVinci
11 May 2009, 13:26
Forum: Help
Topic: Help changing the status with php or SQL
Replies: 0
Views: 1802

Help changing the status with php or SQL

i need help with v.1.1.6
i've been using Mantis for over two years now and have customized it under way.
the last customization was the Status..
i only want to have three Status in Mantis:
[b]
New
Assigned
Closed[/b]

I've added the following line in config_inc.php:

[code]$g_status_enum_string ...
by DaVinci
29 Apr 2009, 11:00
Forum: Help
Topic: How to add new roles in Mantis?
Replies: 12
Views: 25419

Re: How to add new roles in Mantis?

i forgot to add the rolls in language file
it works now after i did that
by DaVinci
29 Apr 2009, 10:03
Forum: Help
Topic: Help with status
Replies: 0
Views: 1748

Help with status

im trying to customize mantis Staus to show only three status in the status drop-down box and therefoe added follwoing in config_inc.php file:

[code]$g_status_enum_string = '10:new,50:assigned,80:closed';

$g_status_enum_workflow[NEW_]=
'10:new,50:assigned';

$g_status_enum_workflow[FEEDBACK ...
by DaVinci
29 Apr 2009, 09:44
Forum: Help
Topic: Report by mail: Get a ? instead of norwegian characters
Replies: 0
Views: 1792

Report by mail: Get a ? instead of norwegian characters

Hi,
I get a question mark [b]( ? )[/b] instead of norwegian charaters when i report a case via mail.
I have tried to change line 189 in file .\..\mantis\Mail\mimePart.php

[code]isset($contentType['charset']) ? $contentType['charset'] : 'US-ASCII',[/code]
to
[code]isset($contentType['charset ...
by DaVinci
17 Nov 2008, 09:50
Forum: Customizations
Topic: Creating a new link on header
Replies: 0
Views: 2253

Creating a new link on header

I want to make a link on mantis header that call upon <b>bug_report_mail.php</b> for the users who cant wait 2 minutes for the cornjob to run.
what should i do to make this link available <b>only for Administrators</b>

Im using Mantis v1.1.4
by DaVinci
23 Oct 2008, 11:04
Forum: Help
Topic: disable user account creation
Replies: 4
Views: 5764

Re: disable user account creation

search for something like USER_SIGNUP in congif_default.php and set it to off

you can disable and enable many things in config_default.php
by DaVinci
04 Aug 2008, 12:42
Forum: Help
Topic: block spam in report_by_mail
Replies: 0
Views: 1782

block spam in report_by_mail

lately i've getting lots and lots of spam in my mail box connected to the report_by_mail solution.
the spams occupies issue-numbers in mantis and when i delete the issues created by spam i cant use the issue number again.
is it possible to somehow define somewhere in mantis that the only mail that ...
by DaVinci
04 Aug 2008, 12:39
Forum: General Discussion
Topic: Problem in Report Issue
Replies: 6
Views: 5952

Re: Problem in Report Issue

install the latest stable version to fix the problem :)
by DaVinci
04 Aug 2008, 12:38
Forum: Help
Topic: Question about view Status
Replies: 3
Views: 4612

Re: Question about view Status

yes it is
you have to go into the php-file to do that
by DaVinci
06 Jun 2008, 07:40
Forum: Help
Topic: Uploading large files (> 20MB)
Replies: 5
Views: 6417

Re: Uploading large files (> 20MB)

i will suggest you to just let the file be in the database and upload it again on the DISK after you have made changes
reason is that if you deltete it you might corrupt DB
by DaVinci
03 Jun 2008, 08:26
Forum: Help
Topic: How to make Lotus notes and Mantis play together
Replies: 8
Views: 7337

Re: How to make Lotus notes and Mantis play together

im still working on the problem..
at one point i got it but now im back to the bottom :(
by DaVinci
03 Jun 2008, 08:25
Forum: General Discussion
Topic: Problem in Report Issue
Replies: 6
Views: 5952

Re: Problem in Report Issue

can i have the solution too?
by DaVinci
27 May 2008, 08:03
Forum: General Discussion
Topic: Problem in Report Issue
Replies: 6
Views: 5952

Re: Problem in Report Issue

if you are using teh latest developemt version then there is a problem with it in IE
use instead v.1.1.1
by DaVinci
26 May 2008, 08:50
Forum: Help
Topic: Attachment problem
Replies: 0
Views: 1971

Attachment problem

I use LotusNotes to report issues.
When Mantis creats a new issue it uploads all the icons as attachements into the case..
is there a way to workaround this such that the e-mail only updates Mantis with the file that is actually been attached?
by DaVinci
23 May 2008, 10:46
Forum: Help
Topic: Uploading large files (> 20MB)
Replies: 5
Views: 6417

Re: Uploading large files (> 20MB)

well..
first of all i would advice you not to use DATABASE to upload so large files..upload them where mantis is installed:

change following in config_default_inc.php
[quote]# Upload destination: specify actual location in project settings
# DISK, DATABASE, or FTP.
$g_file_upload_method = DISK ...