Apache and PHP installation apache+php4+mysql under WINXP

WBOY
Release: 2016-07-29 08:35:15
Original
844 people have browsed it

APACHE2.052-win32+php4.39-win32+mysql4.022 under WINXP is configured through
apache, php4, and mysql, which can be downloaded online, so I won’t go into details here.
I just wrote down my experience after doing it For everyone to share
(1) apache configuration
1. Install APACHE_2.0.52-win32. The default installation path of the program is: C: apache2program filesapache Group. You need to modify the installation path to: C:
(You can also leave it unchanged, mainly For the convenience of modifying the configuration).
2. After the installation is completed, the apache service is automatically loaded. Then open the browser and browse: http://localhost, and the apache welcome page will appear
(This step requires the file "index.html.en" in the C:apache2htdocs directory. Change it to "index.html" before it can be displayed); if there is an exception in this step, please check the installation source file and reinstall
3. Install PHP-4.3.3-Win32. Generally, the downloaded PHP file is a compressed installation-free package, unzip it to C:\PHP.
4. Configure PHP and Apache so that they can parse PHP programs.
PHP configuration: Rename "php.ini-dist" in the C:PHP directory to "php.ini" and copy it to C:windowssystem32 (Win2K directory is: C:winntsystem32)
You also need to change the dlls directory in PHP4 Copy all the .dll files under to c:windowssystem32
Also copy php4ts.dll to c:windowssystem32
You need to modify some parameters in "php.ini"
php.ini is placed in c: by default Under windows
find doc_root
doc_root = Change it to the web page directory,
Example doc_root = C:ApacheApache2htdocs
Find extension_dir = Change it to the place where you want to load the .dll
Example extension_dir = "c:phpextensions"
Find
Windows Extensions
;Note that MySQL and ODBC support is now built in, so no dll
extension=php_bz2.dll
extension=php_cpdf.dll
;extension=php_crack.dll
extension=php_curl.dll
;extension=php_db.dll
extension=php_dba.dll
;extension=php_dbase.dll
extension=php_dbx.dll
;extension=php_domxml.dll
;extension=php_exif.dll
extension=php_fdf.dll
extension=php_filepro.dll
extension=php_gd2.dll
extension=php_gettext.dll
;extension=php_hyperwave.dll
extension=php_iconv.dll
;extension=php_ifx.dll
;extension=php_iisfunc.dll
extension=php_imap.dll
;extension=php_interbase.dll
;extension= php_java.dll
extension=php_ldap.dll
extension=php_mbstring.dll
;extension=php_mcrypt.dll
extension=php_mhash.dll
extension=php_mime_magic.dll
extension=php_ming.dll
;extension=php_mssql.dll
extension= php_msql.dll
;extension=php_oci8.dll
extension=php_openssl.dll
;extension=php_oracle.dll
extension=php_pdf.dll
;extension=php_pgsql.dll
;extension=php_printer.dll
ex=php_shmop.dll
extension=php_snmp.dll
extension=php_sockets.dll
;extension=php_sybase_ct.dll
;extension=php_w32api.dll
extension=php_xmlrpc.dll
extension=php_yaz.dll
extension=php_zi p.dll
Just make the above modifications, don’t add redundant ones that will cause errors,
mysql.default_host =localhost
mysql.default_user =root
mysql.default_password =your own password
This part has been set up and configured through
Apache:
You need to change the name from c:pachehtdocsindex.htmle.en to index.html, otherwise you won’t be able to see the webpage when you are doing the test. Remember (I have been busy here for a long time)
C:apahce2confhttpd.conf
Find ServerRoot
Change to your directory Don’t be wrong,
For example, ServerRoot "C:/Apache/Apache2"
Port, because some places have blocked 80 by telecommunications, so it needs to be changed to this
Listen 8080
Find #LoadModule ssl_module modules/mod_ssl.so and enter it below This line
LoadModule php4_module C:phpsapiphp4apache2.dll (very important for management organization)
Find DocumentRoot
Change it to your web page directory later
DocumentRoot "C:/Apache/Apache2/htdocs"
Underneath
line to change the Options Index (delete it to disable access to the web directory, safety is the first priority) FollowSymLinks
httpd.conf
D Add the following statement at the end of this configuration file to support php Program:
ScriptAlias ​​/php/ "c:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .phtml
AddType application /x-httpd-php .php3
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php "/php/php.exe"
5. Restart the Apache server and write the following statement in the editor:
phpinfo();
?>
Save the file named "test.php" to the C:apache2htdocs directory, then open the browser and browse: http: //localhost:8080/test.php. If basic PHP information appears, the configuration is successful.Strictly follow the above instructions to install and configure, and it will be successful the first time.

The above introduces the installation of Apache and PHP, apache+php4+mysql under WINXP, including the installation of Apache and PHP. I hope it will be helpful to friends who are interested in PHP tutorials.

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!