Zend Framework Testing - Day 5 - Directory Structure
by me7th
Sep
2008
Now that we have Eclipse up and running with the directory layout of:You will only see logs if you set up your virtualhost like this. We will add the default layout structure from the Zend Framework Quickstart and add some new folders so we get a directory structure like this
zendtest
->public_html
->logs
We can build this directory structure in eclipse or we can open a terminal and make the default layout structure like this
zendtest
->application
->->controllers
->->models
->->views
->->->layout
->->->scripts
->library
->->Zend
->logs
->public_html
->->css
->->javascript
->->img
With a copy of the Zend Framework, if you have it located on your desktop, at the end of the terminal command.
["yourusername"@localhost ~]$ cd /var/www/sites/zendtest
["yourusername"@localhost zendtest]$ mkdir -p application application/models application/views application/controllers public_html/css public_html/img public_html/javascript application/views/scripts application/views/layout && cp -R /home/”yourusername”/Desktop/ZendFramework-1.6.0/library ./

