1 / 50

BugFree2 安装部署说明

BugFree2 安装部署说明. 彭雄,周强. Bugfree2 简介及环境说明. BugFree 是免费且开发源代码的缺陷管理系统。 基于 PHP 和 MySQL 开发。 通过 IE , FireFox 等浏览器使用。 需要安装 Apache, PHP, Mysql 支持软件包. 组件版本及下载地址. APACHE : httpd-2.2.15-win32-x86-no_ssl.msi http://httpd.apache.org/download.cgi PHP : php-5.2.13-Win32-VC6-x86.zip

zion
Download Presentation

BugFree2 安装部署说明

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. BugFree2安装部署说明 彭雄,周强

  2. Bugfree2简介及环境说明 • BugFree是免费且开发源代码的缺陷管理系统。 • 基于PHP和MySQL开发。 • 通过IE,FireFox等浏览器使用。 • 需要安装Apache, PHP, Mysql支持软件包

  3. 组件版本及下载地址 • APACHE:httpd-2.2.15-win32-x86-no_ssl.msi http://httpd.apache.org/download.cgi • PHP:php-5.2.13-Win32-VC6-x86.zip http://cn.php.net/downloads.php • MYSQL:mysql-5.0.24-win32.zip http://dev.mysql.com/downloads/mysql/ • BugFree2.1 http://www.bugfree.org.cn

  4. Apache安装 • 下载Apache2.2进行安装

  5. Apache安装 • 安装中的选择项

  6. Apache安装 • 选择版本

  7. Apache安装 • 路径选择

  8. Apache安装 • 安装完成

  9. Apache安装 • 安装完成后右下出现Apache的图标 • 默认为开启状态 • 右键图标 • 选择第一项

  10. Apache安装 • 出现Apache管理界面

  11. Apache配置 • 访问本机ip : • http://localhost或 http://127.0.0.1 • 或 其他

  12. PHP安装 • 解压文件

  13. 整合配置php • 需要配置的文件 • php.ini-dist(在D:\PHP目录下) • php.ini(复制一份php.ini-dist文件到E:\PHP目录下,并将文件名更改为php.ini) • ;extension=php_mysql.dll 去掉前面的分号 • 找到extension_dir = “./”,将其改为php安装目录下ext子目录的绝对路径。如extension_dir = “D:/php/ext/” • 环境变量(Path):如:”D:\PHP“; “D:\PHP\ext”;(可选)

  14. Apache的PHP配置 • 安装成功后,在安装目录打开配置文件/conf/httpd.conf • 找到LoadModule,根据php安装目录,在下面空白处加上这两行: • LoadModule php5_module “D:/PHP/php5apache2.dll” • PHPIniDir “D:/PHP”(注意引号为英文状态的)

  15. Apache的PHP配置 • 找到:DirectoryIndex index.html 修改为:DirectoryIndex index.php index.html • 找到:AddType application/x-gzip .gz .tgz 添加这两行: AddType application/x-httpd-php .php(.前有空格)AddType application/x-httpd-php .html(.前有空格) • 保存httpd.conf,在网站目录中D:/Apache2.2/htdocs,建立一个index.php文件,内容: • <?php phpinfo();?>

  16. Apache的PHP配置 • PHP 配置完后再次访问本机ip : • http://localhost或 http://127.0.0.1

  17. MySql安装及配置 • 进入安装界面:(直接下一步,选择安装目录及开发工具)

  18. MySql安装及配置 • 安装选择:(自定义,安装目录及开发工具选择)

  19. MySql安装及配置 • MySQL配置:(配置登录密码)

  20. MySql安装及配置 • 配置信息:(配置路径,启动服务,安全设置等等)

  21. BugFree2安装及配置 • 解压后复制到Apache的htdocs子目录下

  22. BugFree2安装及配置 • 进入bugfree的安装目录,复制文件Include/Config.inc.Sample.php为新文件Include/Config.inc.php,编辑新创建的文件,修改数据库链接设置。 /* 3. Define the username and password of the BugFree database. */ $_CFG['DB']['User'] = 'root'; // 数据库登录用户名 $_CFG['DB']['Password'] = ‘root';// 数据库登录用户密码 $_CFG['DB']['Host'] = 'localhost'; // 数据库服务器地址 $_CFG['DB']['Database'] = 'bugfree2'; // 指定BugFree数据库名称 $_CFG['DB']['TablePrefix'] = 'bf_'; // 数据库表前缀,默认为bf_。除非有冲突,不建议修改或为空 $_CFG['DBCharset'] = 'UTF8'; // 数据库编码设置,保留默认值

  23. BugFree2安装及配置 • 在浏览器访问http://localhost/bugfree • 如果设置的数据库不存在,按照提示创建数据库。

  24. BugFree2安装及配置 • 再点击继续安装。

  25. BugFree2安装及配置 • 点击“安装全新的 BugFree2”。

  26. BugFree2安装及配置 • 安装成功后,显示首次登录的默认管理员帐号和密码,按照提示首先使用默认管理员用户名和密码登陆BugFree。

  27. BugFree2安装及配置 • 默认管理员用户名和密码登陆。 用户名:admin 密码:123456

  28. BugFree2安装及配置 • BugFree安装配置完成

  29. BugFree2使用 • 后台管理 • 用户管理 • 用户组管理 • 项目管理 • 用户日志 • BugFree功能 • Bug管理 • Test case管理 • Test result管理 • 参考资料http://www.bugfree.org.cn/help

  30. BugFree2使用 • 用户管理

  31. BugFree2使用 • 用户管理

  32. BugFree2使用 • 用户组管理

  33. BugFree2使用 • 用户组管理

  34. BugFree2使用 • 用户组管理

  35. BugFree2使用 • 项目管理

  36. BugFree2使用 • 项目管理

  37. BugFree2使用 • 主页面

  38. BugFree2使用 • Bug管理

  39. BugFree2使用 • Bug管理

  40. BugFree2使用 • Bug管理

  41. BugFree2使用 • Bug管理

  42. BugFree2使用 • Bug管理

  43. BugFree2使用 • Bug管理

  44. BugFree2使用 • Test case管理

  45. BugFree2使用 • Test case管理

  46. BugFree2使用 • Test case管理

  47. BugFree2使用 • Test case管理

  48. BugFree2使用 • Test Result管理

  49. BugFree2使用 • Test Result管理

  50. BugFree2使用 • Test Result管理

More Related