Run the installation file (Zendserver-ce-php-5.3.2-5.0.1-windows_x86.exe) to start the installation, please refer to my selection.
Do not change here, maintain the default selection can be
Click the browse button to change the installation directory, such as the D drive set here
Change the Web Server port to 85 to avoid conflicts with IIS, which is not related if you do not have IIS.
Error 1:
Installation completed because Zend Server has a profile encoding error, you need to make changes manually.
Open the D:\Program files\zend\zendserver\etc\zendenablerconf.xml file with Notepad.
Will
Nobelium?? XML version= "1.0" encoding= "UTF-8"?>
Change to
<?xml version= "1.0" encoding= "UTF-8"?>
Otherwise, the Zend server cannot be started, and the Web page displays error 500.
Open Apache Service Monitor in Control Panel (right click on the first icon in the second row of the graph)
Restart Apache (click the Restart button)
Open address in Browser: http://localhost:10081/ZendServer/
You can also find the Zend Server shortcut in the Start menu to open the Zend server configuration interface to do the configuration
Tick the Consent Agreement form box. Set a password removal email notification selection for Zend Server
Enter the Zend server Control Panel after configuration is complete
Here is a reminder that the error handling and logging in the server Setup > directives are commonly used in future development.
The main function is to open or close the error message of PHP.
Error Two: input http:/localhost/cannot be opened. This is primarily the first time you set the port number is not 80, but the default is to access the ports.
So you can access: http://localhost:85/
To modify the port number:
For example, you can change the port that Apache listens on to 81 or any other unused port. Apache modifies the listening port by: Open httpd.conf modify Listen 80 for Listen Bay Apache can listen to more than one port at the same time to implement multiple HTTP services as long as you add a row such as Listen 82 can likewise IIS can also modify the default side Port to avoid conflict modify method similar to open administrative Tools, Internet Services Manager, click Default Web site (or other custom site), right click Properties Click Web Site---Advanced ... Modify TCP Port to be a valid value.
Here are the more detailed settings: http://bbs.cfan.com.cn/thread-189702-1-1.html
Error Three: default path
Appache The default path is typically X:\Program Files\zend\apache2\htdocs X represents your drive letter.
So now I want to change to another place what should I do?
That needs to be modified httpd.conf (in this E:\Program files\zend\apache2\conf directory)
Find the option at the beginning of the documentroot and modify it to the path you want.
For example:
DocumentRoot "D:\MyExperiment\php"
#
# each directory to which Apache have access can is configured with respect
# to which services and features is allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<directory/>
Options FollowSymLinks
AllowOverride None
Order Deny,allow
Deny from all
</Directory>
#
# forward must specifically allow
# particular features to being enabled-so if something ' s not working as
# You are might expect, make sure so you have specifically enabled it
# below.
#
#
# This should is changed to whatever your set DocumentRoot to.
#
<directory "D:\MyExperiment\php" >
Remember all your changes, after saving, you must restart the Appace service.
Php:zend Server installation and related configuration