第一: 装http服务器apache
apache安装完成,如果出现apache端口被占用的情况,请关闭你的迅雷,或者某些杀毒软件!
第二步:安装PHP:
1)、将php-5.2.4-Win32.zip压缩包解压,然后复制到C:\并更名为C:\PHP5
2)、拷贝C:\PHP5\php.ini-dist文件到X:\WINNT下,并更名为php.ini
3)、(方法1)打开php.ini进行参数修改,把extension_dir设置为
extension_dir = "C:/php5/ext"
(方法2)把php5下面的*.dll和ext下的*.dll文件复制到windows下的system32下面!(本人用的是这种)
第三步:加载php模块:
设置网站根目录:
在apache的httpd.conf文件里,设置ServerRoot(服务器根,也就是apache的安装目录)
ServerRoot "F:\php"
设置DocumentRoot(网站目录,也就是你机器上那些让人浏览的网页所在目录)比如:
DocumentRoot "F:\php"
修改:(选择性)设置默然首页
DirectoryIndex phpinfo.php index.html
用模块方式安装!
在文件最后加入
LoadModule php5_module c:/php/php5apache2_2.dll
AddType application/x-httpd-php .php
用CGI方式安装:
同上面的
在ScriptAlias段,增加以下行
ScriptAlias /PHP5/ “C:/php/”
在AddType段,增加以下行
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php5/php-cgi.exe“
第四步:
拷贝C:\PHP5\php.ini-dist文件到X:\WINNT下,并更名为php.ini
在php.ini配置文件中选择运行PHP时需要加载的模块。
[DATE] 下修改;date.timezone =为date.timezone =PRC
将php.ini文件中下面格式的行前的;去掉以加载相应的模块,注:加载模块不正确将会出错
extension=php_bz2.dll
extension=php_cpdf.dll
extension=php_crack.dll
…这些自己加!
测试php程序: phpinfo() ?>保存在f盘为phpinfo.php在浏览器输入
http://localhost:加你的端口号/就OK了!
第五步:
安装mysql
数据库!
一直往下安装直到
If you use uft8, choose
utf8If you use gb2312, choose gb2312! ‘
Due to limited space, some
pictures were not
uploaded!
Finally done!
Step 6:
Install ZendOptimizer
Follow the prompts and continue the installation until it is completed!
Finally configure phpmyadim:
Unzip the file and place it under the root directory of the website:
Modify config.default.php under libraries and rename it to config.inc.php and save it under the root directory and modify it as follows :
$cfg['Servers'][$i]['auth_type'] = 'config'; modified to
$cfg['Servers'][$i]['auth_type'] = 'cookies' ;
$cfg['DefaultConnectionCollation'] = 'utf8_unicode_ci';
$cfg['DefaultCharset'] = 'utf8';
The configuration is basically completed! This is roughly written by me. If there are any mistakes, I hope everyone will point them out.
I will revise them as soon as possible!
You can use QQ or leave a message in the forum!
http://www.bkjia.com/PHPjc/318749.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/318749.htmlTechArticleFirst: Install http server apache apache.1.jpg (43.95 KB) 2007-9-26 17:36 apache.2.jpg (55.15 KB) 2007-9-26 17:36 apache.3.jpg (64.33 KB) 2007-9-26 17:36 apache.4.jpg (41.78 KB) 2007...