`
didasoft
  • 浏览: 164955 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
阅读更多

默认配置文件为config_defaults_inc.php

可以在config_inc.php中修改全局配置

 

下面是我改过后的配置文本:

 

<?php
    $g_hostname = 'localhost';
    $g_db_type = 'mysql';
    $g_database_name = 'bugtracker';
    $g_db_username = 'root';
    $g_db_password = '**********';

    $g_administrator_email  = 'a@b.com';
    $g_webmaster_email      = 'a@b.com';

    # the "From: " field in emails
    $g_from_email           = 'mantis bugtracker';
    $g_return_path_email    = 'a@b.com';
    $g_allow_file_upload    = ON;

    $g_phpMailer_method        = 2;

    $g_smtp_host            = 'b.com';

    # These options allow you to use SMTP Authentication when you use a remote
    # SMTP host with phpMailer.  If smtp_username is not '' then the username
    # and password will be used when logging in to the SMTP server.
    $g_smtp_username = 'user';
    $g_smtp_password = '******';

    $g_default_language        = 'chinese_simplified';

    $g_window_title            = 'Mantis Bugtracker';     # browser window title
    $g_show_realname = ON;

    $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';

    date_default_timezone_set('Asia/Chongqing');

    $g_top_include_page                = '%absolute_path%';

    $g_project_status_enum_string        = '10:development,30:release,50:stable,70:obsolete,90:using';

?>

 

如果想修改状态等下拉框选择就比较麻烦,要添加两个文件:

 

custom_constant_inc.php

 

<?php
define ( 'USING', 90 );
?>

 

custom_strings_inc.php

 

<?php
# Note that we don't have to remove the Updater entry from the localisation file
if ( lang_get_current() === 'chinese_simplified' ) {
$s_project_status_enum_string     = '10:开发中,30:已发布,50:稳定,70:停止维护,90:使用中';
}?>

 

如果想改页面头的图标,可以建立一个toppage.php:

 

<img src="images/yglogo.jpg" alt="公司图标" height="50px" width="100px"><span STYLE="font:normal normal bolder 18pt Arial">开发部错误跟踪管理系统</span>

 

然后在config_inc.php中设置:

 

$g_top_include_page                = 'C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\mantis\core\toppage.php';

 

如果希望全部去掉页尾的东西,就要到html_api.php中去修改了。

分享到:
评论

相关推荐

    xampp配置mantis (亲测)

    ### XAMPP配置Mantis详解 #### 一、前言 在软件开发过程中,一个高效且功能全面的缺陷跟踪系统是必不可少的。Mantis是一款开源的Bug追踪系统,它能够帮助团队有效地管理软件开发过程中的各种问题与缺陷。本文将...

    mantis配置详细步骤-mantis

    下面将详细介绍如何在本地环境配置Mantis Bug Tracker的步骤。 1. **安装WampServer**: 首先,你需要下载并安装WampServer,这是一款集成的Web服务器,包含Apache、MySQL和PHP等组件。默认安装过程中,只需一直点击...

    mantis简单配置方法

    2. **Apache配置Mantis**: - 编辑Apache的`httpd.conf`文件,添加以下内容: ```apache Alias /mantis C:/mantis &lt;Directory "C:/mantis"&gt; AllowOverride None Options None Order allow,deny Allow from ...

    Mantis的IIS配置问题

    在配置Mantis与IIS的过程中,可能会遇到一些常见问题,例如: - **IIS无法识别.php文件**:检查是否已正确配置PHP扩展映射,以及PHP模块是否已经加载。 - **Mantis页面显示错误**:这可能是由于PHP版本不兼容或...

    mantis安装配置心得

    三、配置Mantis 1. 打开EasyPHP的安装目录下的phpMyAdmin目录,并copy到EasyPHP目录下的WWW目录中。 2. 解压缩Mantis,并copy到EasyPHP目录下的WWW目录中。 3. 重启EasyPHP。 4. 打开浏览器,在地址栏输入...

    Mantis安装配置

    本文将详细介绍如何安装和配置Mantis,以及在过程中可能遇到的关键问题。 首先,安装Mantis需要一些基础环境。确保你的服务器或本地计算机已经安装了以下软件: 1. **Web服务器**:例如Apache或Nginx,它们是运行...

    Mantis 在Windows下的安装与配置

    在Windows环境下安装和配置Mantis,可以帮助团队更有效地进行项目协作和质量管理。以下将详细介绍安装和配置的步骤以及可能遇到的问题及其解决方案。 ### 1. **下载与安装** 首先,访问Mantis官网...

    Mantis配置备份

    配置Mantis以满足项目需求是确保团队有效沟通和协作的关键步骤。以下是对"Mantis配置备份"的详细说明: 1. **安装与环境配置** 在开始配置Mantis之前,你需要在服务器上安装Mantis。这通常涉及下载最新版本的...

    mantis缺陷管理工具

    2. `iis6.rar`:这可能包含用于在Microsoft IIS(Internet Information Services)6.0上配置Mantis的指南或脚本。IIS是另一种流行的Web服务器,用户可以选择使用它来代替Apache。 3. `php.tar.gz`:这个文件是PHP...

    缺陷跟踪管理系统Mantis的优化配置与设计

    ### 缺陷跟踪管理系统Mantis的优化配置与设计 #### 一、Mantis配置与部署 ...通过以上步骤,不仅可以有效地安装和配置Mantis,还能根据具体的项目需求进行定制化的工作流设计,从而提高缺陷跟踪管理的效率和准确性。

    Mantis平台Step-By-Step配置手册解决MySQL端口冲突.pdf

    配置手册是指导用户如何正确安装和配置Mantis,以确保其正常运行和使用的文档。针对给定文件标题和描述,我们可以梳理出以下知识点: 1. Mantis平台的安装与配置步骤:配置手册通常会详细介绍Mantis平台的安装过程...

    简简单单Mantis安装与配置

    3. **配置Mantis数据库**: - 访问`http://localhost/mantis/admin/install.php`进入Mantis安装页面。 - 输入MySQL数据库的用户名、密码以及数据库名称。 - 点击“Install/Upgrade Database”按钮完成安装。 - *...

    mantis配置指导

    本文将详细介绍如何配置Mantis以优化其功能。 首先,配置Mantis的基本设置。`use_iis = ON`表示Mantis将与IIS web服务器集成。`show_version = OFF`确保Mantis的版本信息不会在页面底部显示,提高安全性。`default_...

    TestLink及Mantis环境配置手册

    1. 配置链接:在TestLink中,可以配置Mantis的URL和API密钥,使TestLink能够自动报告测试结果到Mantis。 2. 问题跟踪:当在TestLink中执行测试并发现缺陷时,可以通过集成直接在Mantis中创建新的问题报告。 3. 关联...

    Mantis系统安装部署手册

    通过上述步骤,您可以成功地安装和配置Mantis缺陷跟踪管理系统。Mantis系统的安装和配置虽然涉及多个步骤和技术细节,但按照上述指南操作,可以有效地完成整个过程。这不仅有助于提升项目的缺陷管理效率,还能帮助...

    mantis安装配置.txt

    5. **配置Mantis**: - 进入Mantis的安装目录,命令为`cd /var/www/html/mantis/`。 - 复制配置文件,命令为`cp config_inc.php.sample config_inc.php`。 - 使用文本编辑器打开`config_inc.php`,配置数据库连接...

    Mantis常见问题配置.docx

    Mantis常见问题配置 Mantis是一个流行的开源缺陷跟踪系统,为开发和运维人员提供了强大的项目管理工具。在日常工作中,Mantis经常会出现一些常见的问题,本文将介绍Mantis配置中的一些常见问题和解决方案。 1. ...

Global site tag (gtag.js) - Google Analytics