PHP mobile internet development (1)-Environment setup and configuration

Source: Internet
Author: User
PHP mobile internet development (1)-Environment setup and configuration

I. basic process of PHP5.4 environment configuration

Apache: Web service provider. Official website: www.apache.org

PHP: official website: www.php.net

Mysql: official website: www.mysql.com

2. software download

Apache: http://download.csdn.net/detail/lxq_xsyu/7057423

PHP: http://download.csdn.net/detail/lxq_xsyu/7057401

Mysql: http://download.csdn.net/detail/lxq_xsyu/6468461

III. environment construction

(1) install Apache

Installed successfully

(2) decompress PHP5.4

(3) configure the httpd. conf file of Apache

Apache installation directory

ServerRoot "D:/Apache Software Foundation"

Listening port

# Listen 12.34.56.78: 80

Listen 80

Load PHP components

LoadModule php5_module "D:/php54/php5apache2_2.dll" server name

# ServerName www.meritit.com: 80 file root directory

DocumentRoot "D:/Apache Software Foundation/htdocs" permission folder


Index (home page accessed by default)

DirectoryIndex index.html Error log

ErrorLog "logs/error. log"
Access Log

CustomLog "logs/access. log" common
Configuration parsing php

AddType application/x-compress. Z AddType application/x-gzip. gz. tgz AddType application/x-httpd-php. php
Error Type

# ErrorDocument 500 "The server made a boo." # ErrorDocument 404/missing.html # ErrorDocument 404 "/cgi-bin/missing_handler.pl" # ErrorDocument 402 http://www.meritit.com/subscription _

IV. test whether the building is successful

Create a. php


The php configuration file cannot be found. in the apache configuration file, specify the php configuration file directory.

PHPIniDir "D:/php54"

5. configure multi-site access

# Virtual hosts Include conf/extra/httpd-vhosts.conf remove the above comment (open the Virtual host configuration file)

Two sites are configured in the httpd-vhosts.conf as follows

DocumentRoot "D:/Apache Software Foundation/a_com" ServerName 127.0.0.2 ServerAlias www.dummy-host.meritit.com ErrorLog "logs/dummy-host.meritit.com-error.log" CustomLog "logs/dummy-host.meritit.com-access.log" common DocumentRoot "D:/Apache Software Foundation/B _com" ServerName 127.0.0.3 ErrorLog "logs/dummy-host2.meritit.com-error.log" CustomLog "logs/dummy-host2.meritit.com-access.log" common

Note: Once the virtual host is configured, the configured DocumentRoot is invalid.

D: \ Apache Software Foundation \ a_com \ a. php

D: \ Apache Software Foundation \ B _com \ B. php

Note: You must modify the permission folder directory.

Access results:


Internet, PHP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.