mantis是一套php写的bug跟踪程序
他可运行在几乎所有平台。只在装好apache,php和mysql这三个就可以
我在linux平台下装好LAMP架构,然后我在解压mantis文件,并配置别名解析mantis这个目录,然后根据提示输入
这里要更改一下mantis的配置文件,/var/www/html/mantis/config_inc.php.sample 改为config_inc.php
$g_hostname = 'localhost';
$g_db_username = 'root';
$g_db_password = '';
$g_database_name = 'bugtracker';
$g_db_type = 'mysql';
$g_default_language ='chinese_simplified';
$g_window_title = 'mantis BUG管理系统';
$g_page_title = '欢迎使用Mantis BUG 跟踪管理系统 趣得网 无需注册 免费发布';
参考:
windows平台的APM架构一般的用EasyPHP这个,这里面集成了apache+php+mysql
其它:装完后在mysql里改管理员密码:
update mantis_user_table set password=md5('123456') where id=1;
阅读(541) | 评论(0) | 转发(0) |