Detailed step-by-step tutorial for PHP modular installation
This article mainly introduces the method of PHP modular installation. It analyzes the steps and related precautions of PHP modular installation in more detail. It has certain reference value. Friends in need can refer to it
PHP (Hypertext Preprocessor) is a simple but very powerful scripting language. The installation and basic configuration process of Apache2.0.53 php5.2.1 based on the WindowsXP sp2 operating platform is recorded below for reference:
1. First download the following programs from official websites:
1. apache_2.0.53-win32-x86-no_ssl.exe
2. php-5.2. 1-Win32.zip (binary compressed package)
2. Installation and configuration process:
1. Install apache Web server:
Double-click the installation file apache_2.0.53-win32-x86-no_ssl.exe and install it in the D:/Apache directory (I created a new Apache folder on the D drive),
--- -------------------------------------------------- --
Note: The following problems may occur during the installation process:
OS 10048 Normally each socket address (protocol/network address/port) is only allowed to be used once:
make_sock: could not bind to address 0.0.0.0:80...” It is usually caused by IIS occupying port 80
Two solutions:
1. Open the Control Panel->Services, find the IIS admin service, close it and disable it
2 . If you don’t want to close the IIS service, you can change the port used by apache to another port
Change Listen 80 in apache2/conf/httpd.conf to Listen (the port you want to use) such as Listen 8080
But at this time When you access the web service under your apache, add the port number
after the domain name, such as: http://localhost:8080
---------------- ---------------------------------------
Test whether Apache is installed successfully , will be entered in the browser: http://localhost:8080/http://localhost If you can see the Apache logo feather, Congratulations!!!
2. Install PHP:
Extract the contents of php-5.2.1-Win32.zip to D:/PHP (I created a new PHP folder on the D drive) and find php.ini-dist in the php directory. Name it php.ini and copy it to the windows directory. Then copy php5ts.dll and libmysql.dll in the D:/PHP directory to the system directory (under windows/systems32).
Configure httpd.conf in apache
Open the file D:/Apache2/conf/httpd.conf
Find AddDefaultCharset ISO-8859-1 and add it Change to AddDefaultCharset GB2312 (let the default language encoding be Simplified Chinese)
Find DocumentRoot "D:/Apache2/htdocs" and change it to your WEB directory (optional). For example, mine is DocumentRoot "G:/Web Project"
Find DirectoryIndex index.html index.html.var and add index.htm index.php at the end
Select the installation mode: modular mode installation or CGI mode installation (select one)
Modular installation configuration
Find the line #LoadModule ssl_module modules/mod_ssl.so and add a line after this line:
LoadModule php5_module d:/php/php5apache2.dll
Among them, d:/php/php5apache2.dll is the location of php5apache2.dll in your php directory.
Note: LoadModule php5_module d:/php/php5apache2.dll
//Note : Where C:/php5/php5apache2.dll is the corresponding path for you to install php. Do not confuse php5apache2.dll with php5apache2_2.dll.
php5apache2.dll is only applicable to apache 2.0 version.
If it is apache2.2.* or above, "Cannot load C:/php/php5apache2.dll into server: The specified module could not be found." or: "The requested operation has failed"
Find the line AddType application/x-gzip .gz .tgz and add a line after this line
AddType application/x-httpd-php .php
CGI installation configuration
Find the AddType application/x-gzip .gz .tgz line and add the following:
ScriptAlias /php/ "d:/php/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php-cgi.exe"
Note: The full English name of CGI is Common Gateway Interface, which is usually translated as common gateway interface. It is an interface for the HTTP server to communicate with other programs on the machine. This "other program" can be written in any computer language. It obtains input from the HTTP server through the CGI interface, and then sends the running results to the HTTP server through the CGI interface, and the HTTP server sends the results to the browser.
The emergence of CGI has changed the WEB from static to dynamic. As the Web becomes more and more popular, many websites need dynamic pages to interact with viewers. The shortcomings of CGI methods are also becoming more and more prominent. Because HTTP needs to generate a dynamic page, the system must start a new process to run the CGI program. Continuous forking is a very time- and resource-consuming task. Here comes FastCGI.
FastCGI is like a long-live CGI. It can be executed all the time. As long as it is activated, it will not take time to fork every time (this is the most criticized thing about CGI). fork-and-execute mode).
At this point the PHP environment has basically been configured successfully
Create a file named test.php in the WEB root directory (such as my D:/website) with the following content
Restart the apache service
Use a browser to open http://localhost/test.php or In LINUX system: /usr/local/php/bin/php -f test.php
If you can see the php configuration output information, it will be OK
Note: Modular installation of mod_php is to install PHP As a built-in module of APACHE. Let the apache http server itself support the PHP language, without starting the PHP interpreter for every request to interpret PHP.
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
phpHow to write a WeChat payment interface development program
PHP payment system Design and typical cases (recommended)
Using WeChat development with parameter QR code based on php
The above is the detailed content of Detailed step-by-step tutorial for PHP modular installation. For more information, please follow other related articles on the PHP Chinese website!

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.

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.

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 mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

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.

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.
