我刚刚设法使用 Zend_Tool 创建了一个项目,但我被困在“第二步”——启用布局。
zf enable layout
导致:
发生错误
操作“启用”不是有效操作。
这是我的文件夹结构:
|--library
| |--Zend //framework classes in this folder
|
|--bin //command line tool folder
| --zf.sh
| --zf.php
| --zf.exe
|
|--zend_test //my test project folder
| |--application
| |--library
| | --Zend //symlink to ../../library/Zend
| |--public
| |--tests
库文件夹在我的 include_path 中。检查:
php -i | grep include_path
请注意,我能够使用工作zf create project zend_test
等其他操作创建项目show
。
Zend Framework 官方论坛上有一些人有同样的问题,但没有答案。
谢谢你的帮助。