Search found 15 matches

by seiji
09 Apr 2008, 22:11
Forum: Help
Topic: Manage Configuration
Replies: 11
Views: 10246

Re: Manage Configuration

Configuration Option: severity_enum_string
type: string
value: 10:Enhancement,20:Low,30:Medium,40:high,50:Critical,60:Custom,70:,80:
by seiji
09 Apr 2008, 00:52
Forum: Help
Topic: Manage Configuration
Replies: 11
Views: 10246

Re: Manage Configuration

This is the array that i use

array (
'10:Enhancement,
20:Low,
30:Medium,
40:high,
50:Critical,
60:Custom,
70:,
80:,');
Try to use the following array.

Code: Select all

array(
    10 => 'Enhancement',
    20 => 'Low',
     :
    70 => '',
    80 => ''
);
by seiji
19 Mar 2008, 14:55
Forum: Help
Topic: how can i change the 24 hour time format to 12 hour format
Replies: 1
Views: 2214

Re: how can i change the 24 hour time format to 12 hour format

set following to your config_inc.php

Code: Select all

$g_short_date_format    = 'Y-m-d';
$g_normal_date_format   = 'Y-m-d h:i';
$g_complete_date_format = 'Y-m-d h:i T';
by seiji
19 Mar 2008, 07:46
Forum: Help
Topic: Fatal Error on View Issues Page
Replies: 4
Views: 4253

Re: Fatal Error on View Issues Page

Change memory_limit in your php.ini.
by seiji
19 Mar 2008, 07:41
Forum: General Discussion
Topic: Removing handler_id from status in View Issues
Replies: 2
Views: 3554

Re: Removing handler_id from status in View Issues

Set $g_show_assigned_names to OFF in your config_inc.php.
by seiji
08 Feb 2008, 08:57
Forum: Help
Topic: How to limit users to see only their own issues
Replies: 2
Views: 3079

Re: How to limit users to see only their own issues

Hi,
I would like our reporters to see only the issues that they created.
set $g_limit_reporters = ON in your config_inc.php
by seiji
08 Feb 2008, 08:46
Forum: General Discussion
Topic: Enter new Tags
Replies: 1
Views: 3332

Re: Enter new Tags

following issue is helpful to you.
http://www.mantisbt.org/bugs/view.php?id=8353
by seiji
05 Feb 2008, 06:30
Forum: Help
Topic: Problem after upgrade from 1.0.8 to 1.1.1
Replies: 1
Views: 2074

Re: Problem after upgrade from 1.0.8 to 1.1.1

Maybe memory_limit in php.ini is too small. check your memory_limit.
by seiji
25 Jan 2008, 06:22
Forum: General Discussion
Topic: Which Version To Upgrade To
Replies: 1
Views: 3067

Re: Which Version To Upgrade To

You should upgrade to 1.1.1 which is newer stable version.
by seiji
22 Dec 2007, 12:44
Forum: Help
Topic: Can't run Mantis 1.1.0 with PHP4
Replies: 2
Views: 15908

Re: Can't run Mantis 1.1.0 with PHP4

http://www.mantisbt.org/bugs/view.php?id=8681


Mantis 1.1.0 doesn't work on PHP 4 installations since config_defaults_inc.php uses stripos(). Since Mantis 1.1.0 should be the last release that supports PHP 4, this should be replaced with a combination of strtolower() and strpos().

Replace:
$t ...
by seiji
03 Dec 2007, 16:32
Forum: Customizations
Topic: multiple attachment upload
Replies: 9
Views: 17111

Re: multiple attachment upload

The request has been already reported.
http://www.mantisbt.org/bugs/view.php?id=5228