mantis 설치하기

버그트래킹을 하는 툴은 여러가지가 있다.
기존에 버그질라를 잘 사용했더랬는데 맨티스는 어떤지 살펴보려고 좀 설치해보았다.
내컴이 윈도우라서 xamp위에다가 올려보았다.
맨티스와 wiki, cvs연동도 가능하다고 하다. 그것은 아직 테스트를 못해봤다.
cvs말고 svn이랑도 연동이 되려나?
여러국가의 언어를 지원해서 한국어로 보이도록 해주는것 그리고 auto로 설정해서 브라우저 설정에 따라 알아서 바뀌도록 해주는것, 참 맘에 든다.

1. mantis download
현재 최신 개발 버전이 1.1.0a4이고 안정버전은 1.0.8이라고 하는데 나는 1.1.0을 설치했다.
http://sourceforge.net/project/showfiles.php?group_id=14963


2. 압축풀기
일단 다운로드 받은 파일의 압축을 풀고 xamp의 doc root로 복사해준다. 이때 버전정보는 귀찮으니까 그냥 mantis로 옮기자.
xxx\프로젝트관리툴\mantis-1.1.0a4.tar\mantis-1.1.0a4
==> C:\xampp\htdocs\mantis


3. mantis db install
http://localhost/mantis/admin/install.php 로 접속



=> Password (for Database) 입력
=>   클릭
=> 그럼 설치 완료.
아래와 같은 화면임


4. 로그인하기
administrator의 기본 패스워드는 root이다. 이것으로 로그인하기
http://localhost/mantis/





5. 메일 서버 연동
C:\xampp\htdocs\mantis\config_inc.php
에 아래의 설정 추가

 $g_administrator_email = 'yellowdog75@nate.com';
 $g_webmaster_email  = 'yellowdog75@nate.com';

 # the sender email, part of 'From: ' header in emails
  $g_from_email   = 'yellowdog75@nate.com';
 
 # the sender name, part of 'From: ' header in emails
 $g_from_name   = 'Mantis Bug Tracker';

 # the return address for bounced mail
 $g_return_path_email = 'yellowdog75@nate.com';

 # select the method to mail by:
 # 0 - mail()
 # 1 - sendmail
 # 2 - SMTP
 $g_phpMailer_method  = 2;

 # This option allows you to use a remote SMTP host.  Must use the phpMailer script
 # One or more hosts, separated by a semicolon, can be listed.
 # You can also specify a different port for each host by using this
 # format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com").
 # Hosts will be tried in order.
 $g_smtp_host   = 'mail.nate.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 = 'your nate mail id';    #메일서버가 없어서 nate smtp서버를 사용하도록 설정한것이다. 경우에 따라 잘 바꿔준다
 $g_smtp_password = 'your nate mail pwd';



6. 한글로 보이게 하기
C:\xampp\htdocs\mantis\config_inc.php
에 아래의 설정 추가
 $g_default_language  = 'korean';

Posted by 시티락