Download PHP5: php tutorial.net/distributions/php-5.2.6-Win32.zip" target="_blank">http://cn2.php.net/distributions/php-5.2.6- Win32.zip
Download apache: http://down.chinaz.com/soft/18000.htm
1. PHP installation and debugging
Since php is a zip file (non-install version), the installation is relatively simple, just unzip it. Rename the unzipped php5.2.1-Win32 to php5. And copy it to the C drive directory. That is, the installation path is c:php5
1 Find the php.ini-dist or php.ini.recommended file in the php directory and rename it to php.ini
And copy it to the windows directory of the system disk (take c:windows as an example).
2 Copy php5ts.dll and libmysql tutorial.dll in the php directory to the directory c:windowssystem32.
3 Copy the php_gd2.dll, php_mysql.dll, php_mbstring.dll files in the php5ext directory to c:windowssystem32
If php_gd2.dll is not loaded, php will not be able to process images. If php_mysql.dll is not loaded, php will not support the mysql function library
php_mbstring.dll supports wide characters when using phpmyadmin later.
4 Open the c:windowsphp.ini file (associated to mysql)
Set extension path
Find extension_dir and find the line extension_dir = "./"
Change this line to
extension_dir = "C:php5ext"
Where C:php5 is the path where you installed php. Incorrect path will not load the dll
(Note: Some PHP versions have ;extension_dir = "./" to remove the preceding semicolon)
Find extension
extension=php_mbstring.dll
extension=php_gd2.dll
extension=php_mysql.dl
Remove the semicolons in front of the above three items so that these dlls can be loaded when apache starts
Of course, we also copied these dlls to system32 before l
php5 time difference problem
The time difference is eight hours
Why? The PHP5 series version has a new time zone setting. The default is Greenwich Mean Time, which is exactly 8 hours different from the East 8th District where China is located
Find date.timezone and there is such a line
;date.timezone =
Remove ; and change it to
date.timezone = PRC
2. Apache debugging and integration
1. Modify the website root directory
Find DocumentRoot and there is such a line
DocumentRoot"C:/Program Files/Apache Group/Apache2/htdocs"
This is the root directory of your website. You can modify it or use the default one. If you modify it, you must also modify the following items, otherwise a 403 error may occur
Find This should be changed to whatever you set DocumentRoot to
Two lines below it there is
Change the C:/Program Files/Apache Group/Apache2/htdocs in the above two items to the directory you want
2. Let apache support *.php (web page)
Find DirectoryIndex index.html index.html.var
Modify to
DirectoryIndex index.html index.html.var index.php
In this way, index.php can serve as the default page
3. Modular installation of php in Apache
Find # LoadModule foo_module modules/mod_foo.so
Add a line after this line
LoadModule php5_module C:/php5/php5apache2.dll //Note: C:/php5/php5apache2.dll is the corresponding path where you install php. Do not confuse php5apache2.dll with php5apache.dll. php5apache.dll is only applicable to the apache version The php5apache2.dll in the .PHP5 compressed package of 1 is only applicable to apache2.0.* version. If it is 2.2.* or above version, "Cannot load C:/php/php5apache2.dll into server: The specified module may appear. could not be found." or: "The requested operation has failed"
4. Find AddType application/x-gzip .gz .tgz
Add a line after this line
AddType application/x-httpd-php .php (Remember: there is a space in front!!!)
This way apache can interpret the php file
5. Test
Create a phpinfo.php file in the root directory of the website
phpinfo();
?>
Open in browser
http://localhost/phpinfo.php
5. Test the association between php and mysql database tutorials
Create a test.php file in the root directory of the website
$link=mysql_connect("localhost","root","12345"); //Change 12345 to your mysql password
if(!$link) echo "Failed!";
else echo "Success!";
mysql_close();
?>
Open http://localhost/test.php
in the browser
If the output is successful, it means you are done

随着互联网的不断发展和普及,Web应用程序已成为人们日常生活中必不可少的一部分,这也决定了Web应用程序的安全问题非常重要。在Web应用程序中,Cookie被广泛使用来实现用户身份认证等功能,然而Cookie也存在着安全风险,因此在配置Nginx时,必须设定适当的Cookie安全策略,以保证Cookie的安全性。下面是一些在Nginx中配置Cookie安全策

WindowsXP属于多用户多任务操作系统,由Microsoft开发和发布于2001年,它是Windows2000的继承者,注重家庭用户和媒体中心功能而设计,被广泛应用于台式机和笔记本电脑,直到2014年4月8日停止支持。

如何配置MySQL连接池的最大连接数?MySQL是一个开源的关系型数据库管理系统,被广泛应用于各种领域的数据存储与管理。在使用MySQL时,我们常常需要使用连接池来管理数据库连接,以提高性能和资源利用率。连接池是一种维护和管理数据库连接的技术,它能够在需要时提供数据库连接,并在不需要时回收连接,从而减少了连接的重复创建和销毁。而连接池的最大连接数则是连接池所

使用GDB调试Linux内核的常用配置技巧引言:在Linux开发中,使用GDB调试内核是一项非常重要的技能。GDB是一款功能强大的调试工具,可以帮助开发者快速定位和解决内核中的bug。本文将介绍一些常用的GDB配置技巧,以及如何使用GDB调试Linux内核。一、配置GDB环境首先,我们需要在Linux系统上配置GDB的环境。请确保你的系统已经安装了GDB工具

Nginx错误页面配置,优雅处理网站故障在现代互联网时代,一个高度稳定和可靠的网站是任何企业或个人追求的目标。然而,由于各种原因,网站可能会经历故障或错误,这可能是由于网络问题、服务器问题或应用程序错误等。为了提供更好的用户体验和优雅地处理任何可能发生的错误,Nginx作为一个强大的Web服务器软件,不仅能够提供高性能的服务,还能够灵活地配置错误页面。在Ng

在Linux服务器上配置防火墙非常重要,它可以有效地保护服务器免受恶意攻击。在Ubuntu操作系统上,我们可以使用UFW防火墙来保护服务器的安全。在本文中,我们将介绍如何使用宝塔面板配置UFW防火墙。第一步:安装宝塔面板首先,我们需要在Ubuntu上安装宝塔面板。您可以在宝塔官网免费下载宝塔面板的安装包,然后在命令行中运行以下命令来安装宝塔面板:$wget

windowsxp系统是十分传统的一个操作系统,可是用久了容易出问题,那么应当怎么修复呢?windowsxp系统修补命令是什么呢?XP系统自动修复命令是sfc,大家可以根据cmd打开命令提示符窗口,随后输入sfc并运作以后就可自动打开检验了,假如存有错误的话,它便会提醒你来开展具体的修补操作。windowsxp系统修补命令是什么:XP系统自动修复命令(sfc)cmd>Sfc.exe系统文件修补查验命令其实是由系统文件查验Sfc.exe在WindowsXP系统中,使用步骤如下:1、点击&qu

随着云计算、大数据和物联网等技术的日益普及,虚拟化技术成为了当今IT领域的热门话题。虚拟化是通过将一台物理主机划分为多个独立的虚拟机,实现资源的共享和管理的方法。虚拟网络是虚拟化的其中一个重要组成部分,能够满足不同应用之间的网络隔离和互动需求。在本文中,我们将介绍如何使用Linux进行虚拟网络配置。一、Linux虚拟网络的概述在物理网络中,网卡是连接网络设备


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
