2

When I tried the Zend Studio to create new zend framework project it creates just the folder named with project name but it's empty.

In some tutorials I've seen it creating the full structure of zend project public, application[controllers,models,views],library....

I don't have the zend server is this the problem?

DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
ahmedsafan86
  • 1,776
  • 1
  • 26
  • 49

1 Answers1

5

Zend Studio does not create the project structure with all folders. You can either do it manually by creating the folders or use the the CLI, or command line tool (internally known as the console tool).

Using it you can generate the basic project structure and add/edit structure and files.

enter image description here

DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
  • i use zf in windows but I've seen some tutorials showing that when you choose zend framework application the program create the needed structure without using zf!! – ahmedsafan86 Mar 03 '11 at 06:58
  • 1
    Well but project strucuture is not static, you can choose between several types of structure like modular application design, the CLI tool is easy to setup and I recommend you to use it if you want to work with zend framework – DarkLeafyGreen Mar 03 '11 at 07:25