Hello.
Another quick tip. To start a new Zend Framework project, the easiest way is using Zend_Tool for that. Please, install first the Zend_Tool follow this link at Zend Framework documentation page.
Creating new project
Let’s starting using the command line and creating a new ZF project.
zf create project my_project_name
Zend_Layout
Now, get in the project folder and enable Zend_Layout support:
cd my_project_name zf enable layout
Continue reading Creating new Zend Framework project using Zend_Tool