需要一些zf2安装的帮助

时间:2013-10-21 00:26:25

标签: git github zend-framework2

我正在使用Windows 7 32位和xampp 1.8.1。

我跟着http://samminds.com/2012/07/zend-framework-2-installation-on-xampp-for-windows/安装了zf2。

我下载了 'http://msysgit.googlecode.com/files/Git-1.8.4-preview20130916.exe' 并安装在“ D:\ Program Files \ Git ”中。

我通过命令 -

通过'git'安装了我的项目
git clone git://github.com/zendframework/ZendSkeletonApplication.git F:\xampp\htdocs\zen

我的zend骨架安装在“ F:\ xampphtdocszen ”文件夹中。

文件夹结构是: enter image description here

现在教程说要输入:

php composer.phar self-update
php composer.phar install

这些行,但是当我输入

php composer.phar self-update

在git cli中按'Enter'然后出现此错误 - enter image description here

我现在该怎么做才能成功安装zf2?请告诉我详细信息(详细文件夹路径,详细cli命令等)

-Thanks。

编辑:

我在尝试时遇到了这个错误 -

php composer.phar install

错误:

enter image description here

分辨

我必须在php.ini上取消注释这一行 -

extension=php_openssl.dll

1 个答案:

答案 0 :(得分:0)

XAMPP的文件夹结构不是仪式: 结构必须类似于F:\ xampp \ htdoc \ ZendSkeletonApplication

安装zend框架2的步骤:

1)Git clone https://github.com/zendframework/ZendSkeletonApplication  (重命名项目)我的项目名称是Zf2BlogTutorial  C:\ XAMPP \ htdoc \ Zf2BlogTutorial

2)为您的项目创建一个虚拟主机(在C:\ xampp \ apache \ conf \ extra \ httpd-vhosts.conf的末尾复制此代码)

<VirtualHost *:80>
    DocumentRoot "c:/xampp/htdocs/Zf2BlogTutorial/public"
    ServerName local.blog
    ServerAlias local.blog
    <Directory "c:/xampp/htdocs/Zf2BlogTutorial/public">
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory> </VirtualHost>

3)转到C:\ Windows \ System32 \ drivers \ etc \ hosts 并把它放在最后:

127.0.0.1      local.blog

4)转到Zf2BlogTutorial(项目文件夹)

5)

php composer.phar install

php composer.phar self-update
浏览器上的

5)http://local.blog,您将看到zend framework 2 page