共计 2352 个字符,预计需要花费 6 分钟才能阅读完成。
一、Apache 的安装配置
1、双击 apache 安装文件,路径选择
2、安装好后在浏览器栏内输入 http:\127.0.0.1,enter 后出现 it works, 表示安装成功。
3、在 apache 文件夹里找到 httpd.conf,双击打开 httpd.conf
①在里面找到 documentroot, 使其后面的路径为 ”C:/Apache2.2/htdocs”
②在找到 directoryindex 在其 index.html 前面加入 index.php 中间有空格
③找到 #loadmodule, 在所有的最下面加入下面内容,建立 PHP 和 Apache 的连接
LoadModule php5_module “C:/php5/php5apache2_2.dll”
PHPIniDir “C:/php5/”
AddType application/x-httpd-php .php
AddType application/x-httpd-php .html
注释:上面 D:/php5 是以 PHP 安装目录为准的如果解压的位置为 C 盘目录名为 php 那就改成
C:/php/
修改好后保存。
二、php5.2.5 的安装配置
1、在 D 盘下新建文件夹 php5,把 php5.2.5 压缩包解压到这个文件夹,
2、解压后,把 php5 目录下将 php_msql.dll 和 libmySQL.dll 复制到 c:/windows/system32 下
(不成功使用:把 php5 目录下所有 *.dll 的文件和 ext 目录下所有的 *.dll 文件复制)
3、复制 php.ini-dist 文件到 c:/windows/system32, 并且重命名为 php.ini
4、双击打开 php.ini
①找到 extension_dir,将其后面的路径修改为 ”C:\php5\ext”
②找到 cgi.force_redirect = 1,将 1 改为 0
③;extension=php_mysql.dll 和;extension=php_mysqli.dll 前面的分号去掉。即开放数据库的功能,
使其支持 MySQL 修改好后保存, 并且将修改好后的 php.ini 文件复制粘贴到 C:\php5 下。
(不成功使用:在开启;extension=php_mbstring.dll
;extension=php_mcrypt.dll)
5、新建文件 index.php,存放在 C:\Program Files\Apache Software Foundation\Apache2.2\htdocs,添加并保存内容:
<?php
phpinfo();
?>
6、重启 apache
三,mysql5.0 的安装
1、双击 mysql5.0 的安装包, 安装路径没有限定
2、安装步骤中在要求输入用户名和密码的时候,用户名为 root 密码为任意但不能忘了
3.数据库没有过多修改的只要记得 root 和密码后面安装时有用到不可输错不然安装时连接不到数据库
四、testlink 的安装
1、将 testlink1.8.5 安装包解压到 C:\Apache2.2\htdocs 目录下并且命名为 testlink
(确定 testlinknk 内没有从文件夹只有 testlink 的自带文件,有的会解压出多一个文件夹
2、在浏览器栏内输入 http://localhost/testlink/index.php
3、点击 new testlink, 进入 testlink 页面自动安装配置界面
4、在 database username 内输入 root 在 password 内输入安装数据库时的密码
5、在 testlink username 和 password 里分别输入任意的字母和数字(此为 testlink 的数据库用户名和密码)
6、accessed->press->create
7、提示您 create mew testlink 成功
8、输入 admin,admin 进入 testlink.
错误:
testlink 安装时,点击“Process TestLink Setup”后,出现页面报错:
“Checking PHP DB extensions Warning!: Your PHP installation don’t have the mysql extension mysql- without it is IMPOSSIBLE to use Testlink.Failed!”
返回前一步,看检查配置时,发现:
Checking MySQL Database Failed! MySQL Database cannot be used.
Checking Postgres Database Failed! Postgres Database cannot be used.
Checking GD Graphic library OK
Checking LDAP library Failed! LDAP library not enabled. LDAP
解决方案:1)、重新安装了 MYSQL;
2)、将 PHP 安装目录下的 php5ts.dll 文件复制到 C:\window\system32 目录中.
将 PHP 安装 目录下的 libmysql.dll 文件到 C:\windows\system32\ 目录中。
这时 Checking MySQL Database 后面就显示 ok 了
3)、Checking LDAP library OK
php.ini 文件修改如下:
extension=php_ldap.dll
4)、Checking Postgres Database Failed! Postgres Database cannot be used.
如果安装了 MySQL 或 SqlServer,不用处理该警告;
注:修改 php.ini 配置文件后,需要重启机器后才生效。