Home  >  Article  >  php教程  >  安装和配置PHP,MYSQL,Apache和Zend Studio

安装和配置PHP,MYSQL,Apache和Zend Studio

WBOY
WBOYOriginal
2016-06-14 00:02:241076browse

最近几天公司有一个PHP新项目,因为一直都在.NET下做开发,PHP接触的很少,所以学习起来有点费劲。

下面总结一下搭开发环境的经验:
1,到www.zend.com下载Zend Core安装包,它集成了PHP,MYSQL和APACHE,是一个ALL-IN-ONE式的安装,简单方便,不用像以前一样需要配置PHP。另外,虽然是安装到WINDOWS环境下,但是用IIS和PHP还是有些问题,所以还是装了APACHE SERVER。安装时要注意的是不要用默认的80端口,一般用8080。
2,装好后有需要配置APACHE SERVER。第一,到安装目录下(C:/Program File/Zend/Apache2/conf)下,找到httpd.conf打开,找到ServerRoot的配置行,改为如:ServerRoot "C:/Program File/Zend/Apache2"。第二,找到Listen 8080配置行,在这一行后加一行Listen 8888(8888可以随便定,只要是一个没有用过的端口都可以),作用是你自己的项目用这个端口来监听。第三,确认Include conf/extra/httpd-vhosts.conf配置行不是注释的。第四,打开C:/Program File/Zend/Apache2/conf/extra下的httpd-vhosts.conf,将VirtualHost节改为如下示例:

    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot C:/PHPDev/PMC/public/www (你自己的开发目录)
    ServerName localhost:8888
    ErrorLog logs/PMC-error_log
    CustomLog logs/PMC-access_log common
     
      allow from all
     
     
      allow from all
     


3,停止并重启Apache Server,在C:/Program File/Zend/Apache2/bin下,有一个ApacheMonitor.exe,就是用它。
4,访问就用例如:http://localhost:8888/index.php
5,下载并安装Zend Studio,一个不错的IDE。

好了,今天就到这,这几天应该都在做PHP,有什么心得再和大家分享。

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