`

使用xampp安装mantis

阅读更多

文章来源:http://www.mantis.org.cn  

 

Mantis for Windows
1.安装之前,下载下列软件
XAMPP --->Apache,php,MySQL架设包
Mantis-1.0.5

2.安装xampp
执行刚下载的执行档即可
3.建立MySQL的使用者账号
利用xampp提供的页面来设定即可
4.安装mantis
解压缩mantis_1.0.5.tar.gz并将解开的目录放到C:\Program Files\xampp\htdocs\
在浏览器网址列键入
http://<your ip>/mantis_1.0.5/index.php即可进行安装,重点是存取MySQL的账号要设对和MySQL,Apache要启动
5.设定mantis
在浏览器网址列键入
http://<your ip>/mantis_1.0.5/index.php,如果安装成功,就会看到登入画面,用预设的账号administrator,密码root进入,新增一个有admin权限的使用者,确定新的使用者可以登入之后删除预设的使用者并移除C:\Program Files\xampp\htdocs\mantis_1.0.5\admin目录
**在新增使用者遇到了一个mail的error,使得新增的使用者无法登入,解决方式是在C:\Program Files\xampp\htdocs\mantis_1.0.5\下有个设定档config_inc.php,新增一行如下
$g_enable_email_notification = OFF;
**若想改中文接口同样在config_inc.php,新增一行如下
$g_default_language = 'chinese_traditional_utf8';
不过只有接口部份成中文,其它还是英文,而且输入中文会显示成乱码,这部份需再研究,或许在一开始安装时就选成繁体中文可能会有较好的结果

在用过了非开源的测试管理工具后,对开源工具也产生了兴趣,mantis是一个短平快的开源缺陷管理工具。它是一个基于php/MySQL/web的开源的错误追踪系统。
    网上很多关于mantis的部署介绍,都要从apache到mysql到php的部署,在各个配置文件中改来改去,稍有版本对应不好或者配置不对,系统就无法运行,真是乏味。
    后来,终于发现集成apache+php+mysql+...的安装工具——xampp;于是工作就变得简单起来,只需要安装xampp,然后在apache的配置文件\conf\httpd.conf 末尾加上:

  Alias /mantis "c:/mantis/"
  Options Indexes
  AllowOverride None
  Order allow,deny
  Allow from all


    然后将mantis下的config_inc.php.sample改名为config_inc.php。再配置一下mantis的邮件服务。一切就ok了。省了很多时间。

C:\mantis\xampp\htdocs\mantis\config_inc.php
<?php
   
   # Look in http://manual.mantisbugtracker.com/ or config_defaults_inc.php for more
   # detailed comments.

   # --- database variables ---------

   # set these values to match your setup
   $g_hostname     = "localhost";
   $g_db_username   = "root";
   $g_db_password   = "test";
   $g_database_name = "mantis";
   $g_db_type     = "mysql";

   # --- email variables -------------
   
   $g_administrator_email = 'mantis_china@163.com';
   $g_webmaster_email     = 'mantis_china@163.com';

   # the "From: " field in emails
   $g_from_email       = 'mantis_china@163.com';
   
   # the return address for bounced mail
   $g_return_path_email   = 'mantis_china@163.com';
   
   
    $g_enable_email_notification = ON;
    $g_smtp_host='mail.163.com.cn';
    $g_smtp_username='mantis_china@163.com';
    $g_smtp_password='test';
   
    $g_use_phpMailer = ON;
    $g_phpMailer_method =2;
    $g_phpMailer_path = 'c:/mantis/xampp/htdocs/mantis/core/phpmailer/';
   
   # --- file upload settings --------
   # This is the master setting to disable *all* file uploading functionality
   #
   # The default value is ON but you must make sure file uploading is enabled
   # in PHP as well. You may need to add "file_uploads = TRUE" to your php.ini.
   $g_allow_file_upload    = ON;
   $g_default_language = 'chinese_simplified';
   $g_delete_bug_threshold = MANAGER;
   putenv("TZ=Asia/Shanghai");
   $g_use_jpgraph = ON;
    $g_jpgraph_path = 'C:/mantis/xampp/htdocs/mantis/jpgraph-1.21b/src/';
    $g_graph_font = 'chinese_gbk';

?>

分享到:
评论

相关推荐

    教你如何2分钟安装mantis-借助XAMPP安装Mantis-最简单的方法

    借助XAMPP安装Mantis(Mantis for Windows)_最简单适用 1.安装之前,下载下列软件 XAMPP ---&gt;Apache,php,MySQL架设包 1.7.1 Mantis-1.1.6 2.安装xampp 执行刚下载的执行档即可 3.建立MySQL的使用者账号 利用xampp...

    xampp配置mantis (亲测)

    - 运行`xampp-win32-1.7.3.exe`,按照向导进行安装,默认安装在E盘,全程使用默认选项即可。 3. **启动XAMPP** - 启动XAMPP控制面板,确保Apache和MySql服务均被勾选并已启动。若启动失败,需检查端口冲突。 ###...

    xampp和mantis结合使用小结

    **XAMPP与Mantis结合使用详解** ...通过以上步骤,你就可以在XAMPP环境中成功安装并使用Mantis了。这种结合使得本地开发环境成为一个功能完善的项目管理和bug跟踪系统,极大地提升了团队的协作效率。

    linux下使用xampp搭建mantis

    2. **安装XAMPP**:使用`chmod`命令给予`xampp-linux-x64-1.8.3-4-installer.run`执行权限,然后运行该脚本来安装XAMPP。安装路径通常选择为`/opt/lamp`。 3. **解压MantisBT**:解压`mantisbt-1.2.17.zip`到`/opt/...

    Mantis安装使用手册(xampp版本 EasyPHP版本).docx

    ### Mantis安装使用手册(xampp版本 EasyPHP版本) #### 一、Mantis配置环境的安装(xampp版本) **1. 安装XAMPP** - **步骤1**: 下载并安装XAMPP。首先需要下载XAMPP安装程序,例如`xampp-win32-1.7.4-VC6-...

    Mantis for Windows(借助XAMPP安装)

    在Windows环境下安装Mantis,通常会与XAMPP一起使用,因为XAMPP是一个集成的开发环境,包含了运行PHP应用(如Mantis)所需的Apache服务器、MySQL数据库和PHP等组件。 ### 一、XAMPP安装 1. **下载XAMPP**: 首先,...

    利用XAMPP在linux下搭建Mantis手册.doc

    《利用XAMPP在Linux下搭建Mantis缺陷管理系统》 Mantis是一款开源的缺陷跟踪系统,常用于项目管理和软件开发中的错误追踪。本手册将详细介绍如何在Linux环境下,特别是RedHat 4系统上,利用XAMPP搭建Mantis。XAMPP...

    mantis1.2.5_XAMPP安装

    Mantis1.2.5的安装需要先下载安装包,然后将压缩包解压到XAMPP的HOTDOC目录下。解压后需要确认解压后的子目录中包含以.php为后缀的文件,并将该子目录改名为方便记忆的名字,如mantis。接着,通过浏览器访问Mantis的...

    mantis1.2.5@XAMPP安装手册

    【Mantis 1.2.5@XAMPP ...通过以上步骤,你应能在 XAMPP 上成功安装并配置好 Mantis 1.2.5,以便开始使用这个强大的缺陷追踪系统。记得在安装过程中留意可能出现的问题,并根据需要调整配置,以满足特定环境的需求。

    mantis安装及配置

    ### Mantis安装与配置详解 #### 一、软件准备 在进行Mantis的安装与配置之前,我们需要准备必要的软件环境: 1. **XAMPP**:这是一个免费的、开源的跨平台Web服务器解决方案堆栈,包含了Apache Web服务器、MySQL...

    xampplite_mantis_testlink

    xampplite_mantis_testlink

    mantis完整安装

    输入之前设置的MySQL根用户密码,创建新的数据库和用户,分配权限给Mantis使用。按照提示填写数据库连接信息,包括主机名(通常是localhost)、数据库名、用户名和密码。 完成数据库配置后,Mantis会自动进行表结构...

    Mantis 在Windows下的安装与配置

    下载完成后,解压缩到你希望安装的目录,通常推荐放在Web服务器的根目录下,如`C:\inetpub\wwwroot`(如果你使用的是IIS)或`C:\xampp\htdocs`(如果你使用XAMPP)。 ### 2. **数据库配置** Mantis需要一个支持PHP...

    mantis安装步骤

    10. **安装Mantis**: 将Mantis解压至`C:\xampp\htdocs`目录下,文件夹命名为`mantis`。 11. **访问安装页面**: 打开浏览器访问`http://localhost/mantis/install`页面进行安装,此处默认Apache监听端口为80。 12. **...

Global site tag (gtag.js) - Google Analytics