Home > php教程 > php手册 > body text

windows下zendframework项目环境搭建(通过命令行配置)

WBOY
Release: 2016-06-13 11:56:28
Original
1294 people have browsed it

1、首先你要确定你的PHP版本不低于5.1.4,但强烈建议使用 5.2.3 或更高版本

2、确保你的php.ini开启了如下模块:

extension=php_pdo.dll
extension=php_pdo_mysql.dll

3、打开Apache的配置文件httpd.conf确保你已经开启如下模块:

LoadModule rewrite_module modules/mod_rewrite.so

继续查找httpd.conf文件,如果AllowOverride为None的话,请一定把None都改成all

4、设置环境变量:

如我的zend tool的bin目录:

;F:\ZendFramework\bin

如果出现“php.exe命令不存在。。。”就把php.exe目录也放到环境变量中:

;D:\software\wamp\bin\php\php5.3.10

5、ok啦,测试下:

输入 zf show version 显示版本信息。

输入zf create project f:\web\zendframe 就在我的php环境下创建了zendframe项目

6、将你下载的zend framework的library下面的zend文件拷贝到项目的library目录下。

7、恭喜你,在地址栏输入http://127.0.0.1/zendframe/public显示界面,表明zend framework配置成功!

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template