配置Mantis创建MySql数据库
修改D:\instantmantis-1.1.1\root\mantis\config_inc.php
<?php
$g_hostname = 'localhost:3306'; //数据库地址
$g_db_type = 'mysql'; //数据库类型
$g_database_name = 'mantis'; //表空间名
$g_db_username = 'root'; //用户名
$g_db_password = 'root'; //密码
$g_default_language= 'chinese_simplified_utf8'; //编码集
$g_show_realname = ON; //设置显示真实姓名
putenv("TZ=Asia/Shanghai"); //设置时间
?>
输入:http://localhost:8080/mantis/admin/install.php添加用户名密码创建或更新数据库及表
访问主页
输入:http://localhost:8080/mantis用内置的帐号administrator(密码root)登录。
界面语言(汉化)
在这个版本中已经自带了中文简体,以管理员身份登陆后,选择个人帐号(My Account),然后选择更改个人设置(Preferences),找到界面语言(Language),选择下拉列表中 chinese_simplified,点击更新设置(Updata Prefs)之后重新登陆就ok了
邮箱设置
$g_administrator_email = 'java_rookie@163.com';
$g_webmaster_email = 'java_rookie@163.com';
# the 'From: ' field in emails
$g_from_email = 'java_rookie@163.com';
$g_return_path_email = 'java_rookie@163.com';
$g_enable_email_notification = ON;
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.163.com'; #如果需要有时候要加上端口号
$g_smtp_username = 'java_rookie';
$g_smtp_password = '19861022';
设置远程访问
Listen 127.0.0.1:80
Listen 192.168.1.101:80
人员在报告问题的时候,在新建报告问题页面里面的分类选择为(select)需要在D:\instantmantis-1.1.1\root\mantis\lang\strings_chinese_simplified_utf8.txt文件未尾添加字段
$s_select_option = '(请选择)';