search
HomeBackend DevelopmentPHP TutorialIIS php environment configuration PHP5 MySQL5 ZendOptimizer phpmyadmin installation and configuration_PHP tutorial

This example is the installation and installation of
IIS5.1
php5.2.1(zip)
MySQL5.0.37
phpmyadmin2.10.0.2
ZendOptimizer-3.2.6
under wiondws XP Configuration
IIS installation

1 Put the WindowsXP SP2 system installation CD in the CD-ROM drive

2 Go to Control Panel> Add & Remove> Add/Remove Windows Components> Select Internet Information Services (IIS) in the Windows Component Wizard


3 Click Next to copy the files until the installation is completed


4 Complete the IIS installation


5 Open the browser and enter http://localhost. If the following interface appears, the installation is successful


MySQL installation

1 Click the MySQL installation package


2 The default is Typical, if you want to modify the installation path, you can also choose custom.
Note: In the path to install mysql, Cannot contain Chinese!


3 Click intall to start installation


4 Skip registration


5 Do you want to configure MySQL now? You can also configure it in the configuration wizard of the start menu later.
Here is the configuration now


6 Select Detailed Configuration and click Next to continue


7 The following option is to select the type of mysql application. The first is to develop the server , and the
will only use as little memory as possible. The second type is an ordinary WEB server, which will use a medium amount of memory.
The last one is a MySQL database that only runs on this server, which will occupy all the memory.
Users can choose options according to their own needs. Here are only Select the development server and click Next to continue


8 The following is to select the database purpose. The first one is multi-purpose.
will optimize the database into a good innodb (transaction) storage Type and high-efficiency myisam (non-transactional) storage type,
The second one is only used for transaction processing type, the best optimization innodb, but also supports myisam, only myisam supports full-text index
The last one The first is simple network development, suitable for simple applications. Only the myisam type that does not support transactions is supported.
Generally choose the first multi-functional one.


9 The following is to select the data storage location of InnodDB. It is generally the default and does not need to be changed
(If you want to modify the data saving path, you can also modify the datadir value of my.ini after installation)


10 The following is to select the maximum number of connections allowed by MySQL. The first is a maximum of 20 concurrent connections,
the second is a maximum of 500 concurrent connections, and the last is customized. You can customize it according to Choose according to your own needs.
Select the first one here


11 The following is whether to run the network link. Select the check box here. The port for database monitoring is generally 3306 by default.
If you change it to another port, you must remember the modified port when connecting to the database in the future, otherwise you will not be able to connect to the mysql database.
It is more troublesome. No modifications are made here. Use the default port of mysq: 3306


12 This step sets the default encoding of mysql. The default is latin1, which is also a standard encoding. The second is UTF8, and the third is manual setting.
encoding was introduced in version 4.1 or above. If To use data from the original database, it is best to determine what encoding the original database uses. If the encoding
set here is inconsistent with the encoding of the original database data, garbled characters may appear when using it. It is recommended to use latin1 standard encoding


Of course, if we need to, we can also modify its encoding (not recommended).


13 This step is whether to set mysql to For Windows services, generally choose to set it to a service,
so that you can start and close the MySQL database through the service in the future. Recommendation: also check the following check box,
In this way, in cmd mode, no need Do not go to the bin directory of mysql to execute the command. Consult the executable file on the command line


14 This step is to set the super user password of mysql. This super user is very important,
To have full permissions on mysql, please set it up and remember the super user password.
There is a check box below to create an anonymous account, which will make the database system unsafe.
If you have this requirement, you can also Please check.


15 Click Execute to install


16 Click Finish to complete the installation


17 We can start using mysql, open the mysql Command of all programs in the start menu line Client, enter the password
When this interface appears, it means that mysql has been installed


Possible problems:

If in the 15th Step, the following prompt appears

because you have installed mysql before. Some configuration files were retained when uninstalling.

Click retry to see if it can pass. Otherwise, click cancel to exit. Then click the MySQL Server Instance Config Wizard
in the start menu to reconfigure mysql

and repeat the previous operation. In step 14, the interface will appear as follows

There are three places to enter the password. You have installed mysql before.
You can enter the original root password in the first text box, and enter the new root password in the next two text boxes.

If it still doesn't work, reinstall MySQL.
Note on reinstallation: It is best to delete all the original files. If necessary, you can clear the registry.
If there are no other mysql-related programs on your machine. And be sure not to keep the original my.ini file.
The other thing is to delete the files in the original installation path and delete the ibdata1 file under the data directory.

More articles on PHP fan sitehttp://www.phpfans.net

Installation of PHP

Since php is a zip file (non-install version), the installation is relatively complicated Simply
decompress it. Rename the decompressed php-5.2.1-Win32 to php5 and copy it to the C drive directory. That is, the installation path is c:php5

1 Find php in the php directory .ini.recommended (or php.ini-dist) file, rename it to php.ini
and copy it to the windows directory of the system disk (take c:windows as an example).

2 Then Copy php5ts.dll and libmysql.dll in the php directory to the directory c:windowssystem32.

3 Copy the php_gd2.dll, php_mysql.dll and 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
More articles on PHP enthusiast site http://www.phpfans.net

Installation of Zend Optimizer

Zend Optimizer Use code optimization methods to improve the execution speed of PHP applications. PHP programs that use Zend Optimizer execute 40% to 100% faster than those without. And some files encrypted with Zend SafeGuard must be installed with Zend Optimizer before they can run.
Note: Whether Zend Optimizer is installed or not does not affect the normal operation of php. If you find it troublesome, this step Can be omitted.

1 点击安装Zend Optimizer


2 接受协议,点击next


3 选定安装路径


4 我们用的是IIS5.1,所以这里选 IIS


5 选定 php.ini 的位置.我们的是在 C:\WINDOWS\ 下


6 选定IIS默认安装路径.我们的是 C:\Inetpub\


7 点击 Install 进行安装


8 点击 是.安装程序自动完成配置和服务器重启.


9 点击 Finish 完成安装


所有东西安装完成后我们再进行配置

配置php并关联MySQL
打开c:\windows\php.ini文件

以下内容需要回复才能看到

1 Set the extension path
Look for extension_dir and there is such a line
extension_dir = "./"
Change this line to
extension_dir = "C:php5ext"
where C:php5 is The path where you installed php. If the path is incorrect, the dll will not be loaded
(Note: some php versions are; extension_dir = "./" and the preceding semicolon must be removed)
2 Find
;extension=php_mbstring .dll
;extension=php_gd2.dll
;extension=php_mysql.dl
Remove the semicolon in front of the above three items, so that these dlls can be loaded when IIS starts
Of course we also did it earlier Copy these dlls to system32. (Everyone noticed how to load some dlls during the installation process.
You will need to load some dlls in the future, such as php_mysqli.dll, so you will know how to load them)
3 Set the session save path
Look for session.save_path and there is such a line
; session.save_path = "N;/path"
Add a line after this line (Please note that it is a line, Instead of adding it to the end)
session.save_path = "C:WINDOWSTemp"
Save it to your temporary directory. You can save it to the windows temporary directory Temp
4 There is something worth noting The one is short_open_tag. Some PHP versions are Off by default.
That is to say, PHP cannot use short tags such as must use
because short tags are easy to use, and many programs are also written with short tags, such as discuz, etc.
If you do not change short_open_tag to On, it will be difficult to determine whether the symptoms are due to the above reasons. It is recommended to modify
to find
short_open_tag = Off
and change it to
short_open_tag = On
5 Whether to display errors display_errors
For security reasons, some versions of display_errors also default to Off.
That is to say, during debugging, if there is an error in the PHP code, only a blank page will appear. The reason for the error and the error will not be displayed. The number of error lines.
This will be very inconvenient to debug. It is recommended to modify
to find
display_errors = Off (note not; - display_errors = Off [Security]) according to your own needs. Change
to
display_errors = On

6 Display NOTICE warning prompt
Although the error prompt is turned on in the fifth step, the error report is also controlled by error_reporting.
php5 turns off NOTICE warning prompt by default. If it is debugging locally, It is recommended to turn on the NOTICE warning prompt.
Search for
error_reporting = E_ALL & ~E_NOTICE
and change it to
error_reporting = E_ALL
Also, as a reminder, the error report output can also be controlled through error_reporting() in the program , please refer to the manual for how to use it.
7 register_globals
For security reasons, it is also Off by default
When register_globals=Off, the next program should use $_POST['user_name' when receiving ] and $_POST['user_pass'])
When register_globals=On, the next program can directly use $user_name and $user_pass to accept the value.
For more detailed instructions, please refer to
http://www.phpfans.net/bbs/archiver/?tid-234.htm
It is recommended to modify it according to your own needs
8 php5 time difference problem
The time difference is eight hours
Why? ?The PHP5 series version has added a new time zone setting. The default is Greenwich Mean Time, which is exactly 8 hours different from the East 8th District of China.
Look for date.timezone and there is such a line
; date.timezone =
Remove; and change it to
date.timezone = PRC
where PRC: People's Republic of China,
For more detailed solutions, please refer to this forum's
http:// www.phpfans.net/bbs/archiver/?tid-60.html
Please refer to the configuration of this forum
http://www.phpfans.net/ bbs/viewthread.php?tid=1663&extra=page%3D1
More articles php fan sitehttp://www.phpfans.net

IIS integrates PHP

1 打开 控制面板 > 管理工具


2 打开管理工具中的 Internet信息服务


3 如下图,右键默认网站 点击 属性


4 点击 ISAPI筛选器 再点击 添加 按钮,在弹出的 筛选器属性 对话框中,依次填入
筛选器名称: php
可执行文件: 点击浏览 选中 C:\php5\php5isapi.dll


5 点击 确定 退出配置


6 再次 右键默认网站 点击 属性.进入 ISAPI筛选器.如图,前面状态有个绿色的向上箭头,表示筛选已经起作用.
如果是向下的红色箭头或者没有箭头的话,那表明前面的配置有问题,请确认做了第5步.再不行请重新检查设置.


7 点击 主目录 标签.再点击 配置.


8 如下图,点击 添加 按钮


9 在弹出的 添加/编辑应用程序扩展名映射 对话框中.
可执行文件:点击浏览 选中 C:\php5\php5isapi.dll
可扩展名: .php (别漏了前面的 . )






10 点击 文档 标签,再点 添加 按钮,在弹出的 添加默认文档 对话框中,填入 index.php


配置完成后我们做一下测试
在网站根目录下创建一个 phpinfo.php 文件

phpinfo();
?>

在浏览器打开
http://localhost/phpinfo.php
如果出现如下信息,则说明php已经配置好了


下面再测试php和mysql数据库的关联
在网站根目录下创建一个test.php 文件,内容为

CODE:
<span style="COLOR: #000000"><span style="COLOR: #0000bb"></span><span style="COLOR: #007700"></span><span style="COLOR: #0000bb">php<br></span><span style="COLOR: #0000bb">$host </span><span style="COLOR: #007700">= </span><span style="COLOR: #dd0000">"localhost"</span><span style="COLOR: #007700">;<br></span><span style="COLOR: #0000bb">$user </span><span style="COLOR: #007700">= </span><span style="COLOR: #dd0000">"root"</span><span style="COLOR: #007700">;<br></span><span style="COLOR: #0000bb">$password </span><span style="COLOR: #007700">= </span><span style="COLOR: #dd0000">"12345"</span><span style="COLOR: #007700">;</span><span style="COLOR: #ff8000">//12345改成你的mysql密码<br></span><span style="COLOR: #0000bb">$link</span><span style="COLOR: #007700">=</span><span style="COLOR: #0000bb">mysql_connect</span><span style="COLOR: #007700">(</span><span style="COLOR: #0000bb">$host</span><span style="COLOR: #007700">,</span><span style="COLOR: #0000bb">$user</span><span style="COLOR: #007700">,</span><span style="COLOR: #0000bb">$password</span><span style="COLOR: #007700">);  <br>if(!</span><span style="COLOR: #0000bb">$link</span><span style="COLOR: #007700">) echo </span><span style="COLOR: #dd0000">"<h1 id="失败">失败!</h1>"</span><span style="COLOR: #007700">;<br>else echo </span><span style="COLOR: #dd0000">"<h1 id="成功">成功!</h1>"</span><span style="COLOR: #007700">;<br></span><span style="COLOR: #0000bb">mysql_close</span><span style="COLOR: #007700">();<br>?> </span><br></span>

Open http://localhost/test.php in the browser
If the output is successful, it means you are done.

More articles php Fan site http://www.phpfans.net

Install phpMyAdmin

Download phpMyAdmin-2.10.0.2-all-languages.zip, unzip it to the root directory of your website and rename it to phpMyAdmin.
Find and open libraries/config.default.php (some versions are config in the current directory. inc.php or config.defaut.php)
Make the following modifications:

1 Find the following two lines for password
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
Fill in your mysql password into $cfg['Servers'][$i][' password'] = ''; inside the single quotes

2 Search $cfg['PmaAbsoluteUri'], and set the value in the single quotes behind it to the phpMyAdmin directory path, such as: http://localhost /phpMyAdmin/ ;

3 Search $cfg['DefaultLang'] and set the value in single quotes after it to zh-gb2312;

The following is based on your needs Coding modification (if you are not very familiar with database coding, it is recommended not to modify it)
4 Search $cfg['DefaultCharset'] and set it to the encoding you want.

Open the browser and enter: http://localhost/phpMyAdmin/, IIS and MySQL have been started,
If the following page appears, the phpmyadmin installation is complete and can be used


phpMyAdmin Please take your time to familiarize yourself with the specific functions and will not go into details here.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319568.htmlTechArticleThis example is IIS5.1 php5.2.1(zip) MySQL5.0.37 phpmyadmin2.10.0.2 under wiondws XP Installation and configuration of ZendOptimizer-3.2.6 Installation of IIS 1 Put the WindowsXP SP2 system installation CD in the CD-ROM drive...
Statement
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
Windows安装nginx1.10.1反向代理访问IIS网站的方法Windows安装nginx1.10.1反向代理访问IIS网站的方法May 23, 2023 pm 05:40 PM

首先去官网下载软件包,解压,路径最好不要有中文nginx配置的路径问题由于在windows下文件路径可以用”\”,也可以用”\\”,也可以用”/”作为路径做分隔符。但”\”最容易引发问题,所以要尽量避免使用。不要添加path,否则会引发错误,config文件路径找不到比如我解压在e盘cmd命令定位到nginx.exe所在文件夹cde:\worksoftware\nginx-1.10.1然后执行,首先保证nginx.conf文件配置没问题其实nginx最重要的和最主要的工作就是配置文件,其他没什么

iis在linux上可以用吗iis在linux上可以用吗Mar 23, 2023 am 09:24 AM

iis不可以在linux上使用,因为iis是由微软公司提供的基于运行Microsoft Windows的互联网基本服务,是在Windows操作系统平台下开发的,所以限制了它只能在Windows操作系统下运行。

进程无法访问 Windows 11 / 10 上的文件错误修复进程无法访问 Windows 11 / 10 上的文件错误修复May 12, 2023 pm 07:10 PM

众所周知,当任何文件正在使用时,任何其他进程都无法访问/更改它。在这种情况下,当一个进程试图打开一个文件时,操作系统会锁定该文件以防止它被另一个进程修改。“该进程无法访问该文件,因为它正被另一个进程使用”是许多用户在其Windows计算机上观察到的此类错误消息。已知此错误发生在不同版本的WindowsOS和WindowsServer中。通常,在用户的WindowsPC上使用Netsh命令期间会观察到此错误消息。发生此错误的另一种情况是尝试在Internet信息服务(IIS)M

iis应用程序池怎么打开iis应用程序池怎么打开Apr 09, 2024 pm 07:48 PM

要在 IIS 中打开应用程序池:1. 打开 IIS 管理器;2. 导航到 "应用程序池" 节点;3. 右键单击目标应用程序池并选择 "管理";4. 单击 "高级设置" 选项卡;5. 应用程序池配置可在此查看和修改。

php站用iis乱码而apache没事怎么解决php站用iis乱码而apache没事怎么解决Mar 23, 2023 pm 02:48 PM

​在使用 PHP 进行网站开发时,你可能会遇到字符编码问题。特别是在使用不同的 Web 服务器时,会发现 IIS 和 Apache 处理字符编码的方法不同。当你使用 IIS 时,可能会发现在使用 UTF-8 编码时出现了乱码现象;而在使用 Apache 时,一切正常,没有出现任何问题。这种情况应该怎么解决呢?

iis无法启动怎么解决iis无法启动怎么解决Dec 06, 2023 pm 05:07 PM

iis无法启动的解决办法:1、检查系统文件完整性;2、检查端口占用情况;3、启动相关服务;4、重新安装IIS;5、重置Windows系统;6、检查元数据库文件;7、检查文件权限;8、更新操作系统和应用程序;9、避免安装过多不必要的软件;10、定期备份重要数据。详细介绍:1、检查系统文件完整性,运行系统文件检查工具,检查系统文件的完整性等等。

iis无法启动解决方法iis无法启动解决方法Oct 24, 2023 pm 03:04 PM

解决方法:1、检查IIS服务是否已安装;2、检查依赖服务;3、检查端口冲突;4、检查配置文件和权限;5、重新注册IIS相关组件;6、检查日志文件。

iis的日志文件可以删除吗怎么删iis的日志文件可以删除吗怎么删Apr 09, 2024 pm 07:45 PM

是的,可以删除 IIS 日志文件。删除方法包括:通过 IIS 管理器选择网站或应用程序池,然后在“日志文件”选项卡中删除相应日志文件。使用命令提示符转到日志文件存储目录(通常为 %SystemRoot%\System32\LogFiles\W3SVC1),并使用 del 命令删除日志文件。使用第三方工具(例如 Log Parser)自动删除日志文件。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

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.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

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),