Home php教程 php手册 PHP的相关运行环境

PHP的相关运行环境

Jun 21, 2016 am 09:08 AM
apache dll mysql php

软件下载
1、下载apache http://www.apache.org 上找http server服务,下载apache_1.3.29.tar 或apache_2.0.49-win32-x86-no_ssl

2、下载php http://www.php.net 上找php-4.3.6-installer

3、下载mysql http://www.mysql.com 上找mysql-4.1.1a-alpha-win


安装说明

一、安装Apache

1、安装Apache 到C:\根目录下,会自动生成apache2的文件夹即C:\apache2

2、配置c:\apache2\conf\httpd.conf文件,

(1)、Port: 修改port:80 为8080,避免和IIS的使用产生冲突(即安装有IIS的用户需要设置此项);

(2)、DocumentRoot "C:\Apache2\htdocs" ,这和IIS的wwwroot有相似的功能

(3)、DirectoryIndex index.html,为浏览器解析时的文件后缀的顺序,可在后面加入:
index.html index.htm index.php3 index.php index.phtml index.xml default.php default.htm default.html default.xml等
(以空格相隔)

(4)、为了能使用PHP,应在httpd.conf的最后部分加入以下设置:

前面的适合PHP3,后面的适合PHP4,但有一条一定要和你安装的路径吻合且每句的前面一定不能空格

ScriptAlias /php3/ "c:/php3/"
    AddType application/x-httpd-php3 .php3 .php .phtml .htm .html .xml
    Action application/x-httpd-php3 "/php3/php.exe"

ScriptAlias /php/ "c:/php/"
    AddType application/x-httpd-php .php .phtml .htm .html .xml
    Action application/x-httpd-php "/php/php.exe"

(5)、启动apache并开始服务


二、安装PHP4

1、将解压后的 php-4.3.6-installer内的文件全部自制到C:\php文件夹下

2、配置PHP

(1)、与PHP一起分发的文件包里有一个PHP的主要配置文件PHP.INI-dist
将它拷贝到你的Windows系统目录(Windows 9x的\Windows或Windows NT的\WinNT目录),
并且改名为PHP.INI。需要对此文件作适当的修改,最主要的事情是加入一些可能要用到的模块,象加入MySQL的支持等。

(2)、修改 ;extension=php_msql.dll 除去前边的";"号 ,使其有效

(3)、修改extension_dir = ./ 改成你PHP3的安装目录,例如:extension_dir = c:\php

(4)、将;upload_tmp_dir该行的注释符,即前面的分号“;”去掉,使该行在php.ini文档中起作用。

(5)、你需要什么数据库的支持呢?找到这里:
;Windows Extensions
  ;extension=php3_mysql.dll
  ;extension=php3_calendar.dll
  ;extension=php3_dbase.dll
  ;extension=php3_gd.dll
  ;extension=php3_dbm.dll
  ;extension=php3_mssql.dll
  ;extension=php3_zlib.dll
  ;extension=php3_filepro.dll
  ;extension=php3_imap4r1.dll
  ;extension=php3_ldap.dll
  ;extension=php3_crypt.dll
  ;extension=php3_msql2.dll
  ;extension=php3_odbc.dll
  然后,根据你自己的需要,把你要用到的数据库 的DLL文件一行前面的注释符,即前面的分号“;”去掉。
例如:我需要MySQL的支持,就只需去掉;extension=php_msql.dll前面的分号。
如果这里没有列出你所用到数据库的DLL文件,不要紧,你可以自己给它增添上去。

(6)、如果你要用到PHP来发送邮件的话,请找到这里:
  SMTP = localhost
  sendmail_from = me@localhost.com
  给SMTP设置SMTP服务器,最好是你当地的SMTP服务器,我这里以21cn的SMTP服务器作为例子,然后,
在sendmail_from处填上你的E-MAIL地址,例如可以改成这样:
  SMTP = smtp.21cn.com
  sendmail_from = pert@21cn.com

(7)、对[mysql]栏的以下几项分别设置如下:
  mysql.default_port = 3306
  mysql.default_host = localhost
  mysql.default_user = root
  mysql_connect()函数是用来建立与指定主机上mysql数据库的连接,函数语法如下所示:
  mysql_connect(string [hostname] [:port], string [username], string [password]);
  这里我们为其设定了与mysql数据库连接的默认端口为3306,建立连接的主机是本地主机localhost,
用户为root,同时没对参数password进行设置,密码参数为空,即没有密码。
如果要作连接的mysql数据库位于一个不同的端口,我们必须在主机名后面加上冒号和端口号,
如下所示:  $db = mysql_connect(localhost:3306,root,password);

(8)、如果你所使用的Web服务器是Omni Httpd的话请跳过此步骤;
如果你是以Apache做为你的Web服务器的话,你可以设定doc_root为Apache服务器的根目录,
例如本例中的“c:\apache2\htdocs”(有关Apache的安装与设置在下一节里有详尽的介绍);
如果你是以PWS做为你的Web服务器的话,你可以设定doc_root的目录为指向PWS服务器的默认根目录,
例如本例中的“c:\Inetpub\wwwroot”(有关PWS的安装与设置在下一节里有详尽的介绍)。当然,
最省事的是你可以啥都不用设,仍然将其置空。

(9)、一项不大紧要的设置:
  如果你是使用PWS来做为你的Web Server的话,你还可以设定browscap.ini,
修改;browscap = extra/browscap.ini 改成browscap = c:\windows\system\inetsrv\browscap.ini。

3、关于动态链接库的问题
环境的配置及程序的运行需要用到动态链接库,而且至关重要
(1)、将c:\php\php4ts.dll copy 到winnt\system下
(2)、将c:\php\dlls\libeay32.dll libmySQL.dll mSQL.dll Yaz.dll copy 到winnt\system
(3)、将c:\php\extensions\php_msql.dll copy 到winnt\system下
(4)、将c:\php\extensions\php_msql.dll copy 到c:\php下
(5)、总之,只要把需要用到的动态链接库copy到winnt\system就好了

至此,php.ini已基本全部编辑完成,php.ini的其它各项你也可以根据不同的需要自行设置,这里不再赘述。
现在你要做的就是将编译好的php.ini挎贝到你的Windows系统目录下面去,即:winnt\下

(6)、OK,现在重新启动apache,并开始服务

(7)、现在进行测试,用记事本写一个PHP文件,只包含一句: 将其存为test.php格式,
并copy 到C:\apache2\htdocs下,现在打开浏览器,输入:http://localhost/test.php:8080
当你眼前出现漂亮的PHP Version 4.3.6网页时,就一切OK了


三、安装MySQL
1、将解压后的mysql-4.1.1a-alpha下的所有文件copy 到c:\mysql\的文件夹下

2、运行C:\mysql\bin\winmysqladmin.exe,就OK了


四、关于中文的支持问题的设置
(1)、配置c:\apache2\conf\httpd.conf
修改:AddDefaultCharset gb2312
重启apache

(2)、配置c:\winnt\my.ini
找到:#language=c:\mysql\share\charsets ,去除# ,并改为language=c:\mysql\share\charsets:

(3)、在网页中加入


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Top 10 PHP CMS Platforms For Developers in 2024 Top 10 PHP CMS Platforms For Developers in 2024 Dec 05, 2024 am 10:29 AM

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

How to Add Elements to the End of an Array in PHP How to Add Elements to the End of an Array in PHP Feb 07, 2025 am 11:17 AM

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example

See all articles