PHP安装简明指南
PHP安装
作者:sports98
使用PHP环境的WEB工作环境越来越多了,PHP版本也在从PHP3逐步的完善到PHP4,然后到php4.2.2
php4.2.3,php4.3.0RC2;早一段时间就有人问php4.2.2与apache2的结合存在问题,后来在linuxforum.net内
看到一帖采用更改SOURCE的办法通过编译,也没去尝试。随着工作的需要以及个人的爱好,在自己机器上使
用PHP,由于其他很多工作是在WIN系统下完成的因此我就主说一下PHP在WIN系统下的配置。
先说明一下本人机器配置:
CPU:P4 1.5G
RAM:256MB
HD :40G
系统环境:
Windows Advanced Server Sp3
Web系统:
IIS5.0
Apache
Apache2
数据库 :
Mysql4.0
老版本安装:
早期采用的是php4.1.2安装方法以前帖子都有提到,这里再简单的说一下
IIS内安装PHP我习惯使用ISAPI模式安装,CGI模式不喜欢使用(个人爱好而已~),好象很多书上写的
多半是CGI模式的安装,原因很简单~,CGI的安装模式是比较简单的,
PHP以CGI模式安装到IIS
======================
开始-》设置-》控制面版-》管理工具-》Internet 服务管理器
右键选取WEB站点,选择[属性]
Web站点属性对话页面 -》 主目录 -》 配置 -》 添加 -》可执行文件为(php.exe %s%s)--找到你的PHP安装目录
扩展名不用说了,肯定是php了
然后修改一下你的文档,增加个index.php
运行cmd.exe ->net stop iisadmin ->net start w3svc (你也可以利用Internet 服务管理器进行IIS重起就可以了)
访问一下你的http://localhost,当然了最好放个phpinfo();来检测一下
*******此方法通用php4.1.* -4.2.* -4.3.0
PHP以ISAPI模式安装到IIS
=======================
开始-》设置-》控制面版-》管理工具-》Internet 服务管理器
右键选取 *机器名 -》属性
编辑WWW属性-》ISAPI 筛选器-》添加-》名为PHP,路径应为%PATHTOPATH%\sapi\php4isapi.dll
点选文档-》增加index.php
编辑站点,重复一下步骤OK
重新启动IIS,方法见上,然后检测
*******此方法通用php4.1.* -4.2.* -4.3.0
PHP4.1(3).X以apache模式安装到Apache/Apache2
========================================
编辑Apache配置文件httpd.conf
增加
LoadModule php4_module $PATHTOPHP$/sapi/php4apache(2).dll --(2)为Apache2所使用
AddModule mod_php4.c
AddType application/x-httpd-php .php
DirectoryIndex 后增加index.php
(其他的比如说文档的主服目录等自己设置)
重新启动Apache
********此方法适用PHP4.1.x/4.3.0
PHP4.1(3).X以CGI模式安装到Apache/Apache2
========================================
编辑Apache配置文件httpd.conf
增加
ScriptAlias /php/ "%PATHTOPHP%"
Action application/x-httpd-php "/php/php.exe"
AddType application/x-httpd-php .php
DirectoryIndex 后增加index.php
(其他的比如说文档的主服目录等自己设置)
重新启动Apache
********此方法适用PHP4.1.x/4.3.0
PHP4.2.x安装到Apache(Apache模式/cgi模式)
====================
方法同4.1一样
PHP4.2.X安装到Apache2
始终没没安装成功过,提示错误,我更换为php4.3.0RC2后安装成功
System Windows NT localhost 5.0 build 2195
Build Date Nov 27 2002 21:11:38
Server API Apache 2.0 Filter
====================
以上为本人对PHP(Win系统下)安装的一点,希望对各位有所帮助。等过段时间手里事情忙了个清单后再考虑写一下在
linux下的安装~:)
PHP安装说明

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

To set up a CGI directory in Apache, you need to perform the following steps: Create a CGI directory such as "cgi-bin", and grant Apache write permissions. Add the "ScriptAlias" directive block in the Apache configuration file to map the CGI directory to the "/cgi-bin" URL. Restart Apache.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

When the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.

Apache connects to a database requires the following steps: Install the database driver. Configure the web.xml file to create a connection pool. Create a JDBC data source and specify the connection settings. Use the JDBC API to access the database from Java code, including getting connections, creating statements, binding parameters, executing queries or updates, and processing results.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

The steps to start Apache are as follows: Install Apache (command: sudo apt-get install apache2 or download it from the official website) Start Apache (Linux: sudo systemctl start apache2; Windows: Right-click the "Apache2.4" service and select "Start") Check whether it has been started (Linux: sudo systemctl status apache2; Windows: Check the status of the "Apache2.4" service in the service manager) Enable boot automatically (optional, Linux: sudo systemctl
