Home > Backend Development > PHP Tutorial > WinMe下安装apache + mysql + php4 + perl + phpmyadmin + asp_PHP

WinMe下安装apache + mysql + php4 + perl + phpmyadmin + asp_PHP

WBOY
Release: 2016-06-01 12:35:21
Original
993 people have browsed it

phpmyadminApachemysql安装

一定有一些人在用Window Me操作系统吧!!

就我本人使用Windows Me操作系统而言,在Windows Me环境下安装apache+mysql+php4+perl可谓是非常简单的。就此我写下一下安装攻略。

 

首先安装apache,可以去http://www.apache.org下载一个。

下载完后直接双击执行安装,很简单。(我这里使用的是默认的安装路径,即C:/Program

Files/Apache Group/Apache)  

配置conf目录下的httpd.conf文件:  

找到Servername new.host.name 改为 Servername 127.0.0.1  

现在,你的apache已经可以运行了 !

 运行你的apache,应该显示:

Apache/1.3.12 (Win32) running...  

 

接下来让你的apache支持perl和php。仍然是在httpd.conf文件中加入:

 

ScriptAlias /php/ "c:/php/"

AddType application/x-httpd-php .php

AddType application/x-httpd-php .phtml

Action application/x-httpd-php "/php/php.exe"

 

ScriptAlias /php/ "c:/php/"

AddType application/x-httpd-php3 .php3

AddType application/x-httpd-php3 .phtml

Action application/x-httpd-php3 "/php/php.exe"

 

 

ScriptAlias /perl/ "C:/perl/bin/"

Action application/x-httpd-pl "/perl/perl.exe"

 

现在,可以识别.php .phtml .php3 .cgi .pl文件了。

不过,相应的解释程序还没装。下一步,我们就来安装php4:

 

可以点击 http://ftp.eware.com.cn/pub/utility/developer/php-4.0.6-Win32.zip 下载

php4.0.6版本

(当然,如果你找到更高版本的可以用更高版本的,我这里只是方便你下载)

将下载的zip压缩包,解压缩到c:php目录下,修改目录中的php.ini-dist文件名为php.ini

打开php.ini文件,找到 extension_dir = ./ 一行,改为 extension_dir =

c:phpextensions

然后,可以去找到 ;extension=php_gd.dll 这行,改为 extension=php_gd.dll,这样就可以支

持gb绘图程序了。(由于该zip压缩包中包含了全部的dll文件,你可以根据你的需要去掉前面的;

注释,我这里只是打开了绘图程序)

 

现在,你可以用测试一下你的php了,如果能运行的话,说明php安装成功。如

果找得到 gd support 说明你的gd安装成功!!首先祝贺你啊!!

 

ok,php 已经 finish,我们开始装mysql:

点击 http://software.wx88.net/down/mysql-3.23.38-win.zip 下载 mysql3.23.38 版本

解压缩后双击进行安装,安装在c:mysql目录下,现在你可以在开始菜单中找到名为

WinMYSQLadmin的快捷方式,运行它后,出现一个mysql的友好windows界面,这时你仔细观察右下

脚的任务栏中的一个 红绿灯似的 运行图标,如果它迅速变为 绿灯,说明你的mysql安装成功

了,就这么简单。如果他为 红灯,说明不成功,你可以试着修改一下mysql的端口。

 

下一步,安装phpmyadmin,

可以点击 http://go.163.com/~wmyao/mysqladmin2.0.zip 下载,

把它解压缩到可以执行mysql的目录中就可以了,

事先修改一下config.inc.php3文件,把将前面几行改为:

$cfgServers[1][’host’] = ’localhost’;          

$cfgServers[1][’port’] = ’’;                  

$cfgServers[1][’adv_auth’] = false;          

$cfgServers[1][’stduser’] = ’’;          

$cfgServers[1][’stdpass’] = ’’;            

$cfgServers[1][’user’] = ’’;            

$cfgServers[1][’password’] = ’’;              

$cfgServers[1][’only_db’] = ’’;              

$cfgServers[1][’verbose’] = ’’;      

(这里用的是root用户,所以用户名和密码不用填);

如果你喜欢中文界面,那就找到

require("english.inc.php3");  

改为

require("chinese_gb.inc.php3");  

就可以了!

 

下一步,我们安装perl,你可以去下载一个win32的active perl来双击安装,安装在c:perl目录

下,就完成了。

 

现在完全支持.php .phtml .php3 .cgi .pl的文件了。

我建议所有文件都在C:Program FilesApache GroupApachehtdocs中执行,

不过,这里着重说明一下:运行perl程序(.cgi、.pl)前,每个文件前要是有

#!/usr/bin/perl 都要改为 #!C:Perlinperl.exe ,否则运行perl会500错误的!

 

关于在WinMe下安装asp,那毫无疑问,要用pws,可以用Win98光盘中的。可能在安装pws的过程中

会出现错误(我就是这样),但你可以别管它,继续安装,运行asp程序时,不会出现任何问题

的!!

 

 

最后,如果你在调试中出现疑惑或问题,欢迎来我的论坛提出。

攻略编写 East Lee   ( eastlee )

我的网站 http://www.east.cc.st

技术论坛 http://eastlee.myrice.com/bbs.htm (推荐)

 

祝大家好运!!

 

ps: 本攻略由eastlee编写,http://www.east.cc.st 版权所有,如需转载,请保留出处!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template