我在 Windows XP 上有一个 xampp serwer:Apache 2.4.3 PHP 5.4.7
我尝试开始学习 Zend2。
我下载了骨架应用程序:https ://github.com/zendframework/ZendSkeletonApplication 并从 cmd 运行:
php composer.phar self-update
php composer.phar install
(并不是说我必须提供像 C:\xxx\php.exe 这样的 php 的完整链接——我不知道为什么,我的环境变量中有 php)。一切正常 - 没有错误。
我将此代码添加到 httpd-vhosts.conf :
<VirtualHost *:80>
ServerName zf2-tutorial.localhost
DocumentRoot /zf2-tutorial/public
SetEnv APPLICATION_ENV "development"
<Directory /zf2-tutorial/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
我还将这一行添加到 C:\WINDOWS\system32\drivers\etc\hosts
127.0.0.1 zf2-tutorial.localhost localhost
当我跑
http://zf2-tutorial.localhost
在浏览器中我得到“权限被拒绝”
当我尝试
http://localhost/zf2-tutorial/public/
我得到很长的php错误
Fatal error: Uncaught exception 'Zend\ServiceManager\Exception\InvalidArgumentException' with message 'Provided abstract factory must be the class name of an abstract factory or an instance of an AbstractFactoryInterface.' in C:\xampp\htdocs\zf2-tutorial\vendor\zendframework\zendframework\library\Zend\ServiceManager\ServiceManager.php:302 ...........
我认为 serwer 有问题,因为我得到“权限被拒绝”。我做错了什么?提前谢谢。
非常感谢大家。我的最终配置:
<VirtualHost *:80>
ServerName zf2-tutorial.localhost
DocumentRoot C:/xampp/htdocs/zf2-tutorial/public
SetEnv APPLICATION_ENV "development"
<Directory C:/xampp/htdocs/zf2-tutorial/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
127.0.0.1 zf2-tutorial.localhost