APACHE2.052-win32+php4.39-win32+mysql4.022 configuration under WINXP can be downloaded through
apache, php4, and mysql on the Internet, so I won’t go into details here.
I just did it Just write down your own experience 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 The installation path is modified to: C:
(it can also be left unchanged, mainly for the convenience of modifying the configuration).
2. After the installation is completed, the apache service is automatically loaded. At this time, open the browser and browse: http://localhost, and the apache welcome page will appear
(This step requires the file "index. html.en" 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 download the PHP file It is an installation-free compressed package, just 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 Copy all .dll files in the dlls directory in PHP4 to c:windowssystem32
Also copy php4ts.dll to c:windowssystem32
Modify some parameters in "php.ini"
By default, php.ini should be placed under c:windows
Find doc_root
doc_root = Change it to the web page directory.
For example, doc_root = C:ApacheApache2htdocs
Find extension_dir = Change it to the webpage directory you want to load .dll place
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
extension=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_xslt.dll
;extension=php_yaz.dll
extension=php_zip.dll
Just make the above modifications, don’t add extra ones, it 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:
To be renamed from c:pachehtdocsindex.htmle.en to index.html otherwise when doing testing Remember if you can’t see the web page (I’ve been busy here for a long time)
C:apahce2confhttpd.conf
Find ServerRoot
Don’t make a mistake and change it to your directory,
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 this line below
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"
Under the
line, change the Options Index (delete it to disable access to the web directory, security is first) FollowSymLinks
httpd.conf
D Add the following statement at the end of this configuration file to support php programs:
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: directory, then open the browser and browse to: 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.
http://www.bkjia.com/PHPjc/317243.html