I just managed to create a project using Zend_Tool, but I am stuck on "second step" - enabling layout.
zf enable layout
leads to:
An Error Has Occurred
Action 'enable' is not a valid action.
This is my folder structure:
|--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
The library folder is in my include_path. Checked with:
php -i | grep include_path
Note that I was able to create the project with zf create project zend_test
and other actions like show
work.
There are some ppl on the official Zend Framework forum with same problem, but there are no answers.
Thanks for any help.