Green
Green

Reputation: 30795

How to find out if Zend Framework, Zend Server are installed on my machine?

I'm reading Reference Guide::Create Your Project. And it's written there:

In order to create your project, you must first download and extract Zend Framework.

After you have installed Zend Server, the Framework files may be found under C:\Program Files\Zend\ZendServer\share\ZendFramework on Windows. The include_path will already be configured to include Zend Framework.

I didn't download Zend Framework or installed Zend Server (I have XAMPP installed with Apache and have localhost and can load php files in browser. I don't need any more server, I think). I just downloaded and instaled Zend Studio 9 and after the instalation I went this way:

File --> New --> Example...

and chose Zend Framework Example Project and named my project "zend_project_example".

Then it was written that somthing was being instaled and it took quite a long time. Then I got this tree in the PHP Explore folder. And I even opened the Controller code from Zend Framework Library:

http://www.ljplus.ru/img4/a/_/a_ya_vishe/pic.jpg

So it seems I have ZF, but I don't have anything in:

C:\Program Files\Zend\ZendServer\share\ZendFramework.

In fact I only have Zend Studio 9 folder threre: C:\Program Files\Zend\Zend Studio 9.0.2.

No any \ZendServer\share\ZendFramework

And in the Reference it is written:

Open a terminal (in Windows, Start -> Run, and then use cmd). Navigate to a directory where you would like to start a project. Then, use the path to the appropriate script, and execute one of the following:

% zf create project quickstart

I doesn't work for me. I can't do any steps farther in the Reference Guide. What should I have to solve and what should I have to do next to follow the Referance right way?

Thank you.

Upvotes: 0

Views: 2114

Answers (2)

mitesh chavada
mitesh chavada

Reputation: 37

http://www.zend.com/en/downloads/

this is to download link for zend server and which would you like preferred you choose and you save manually and double click on setup file easy to install on your system

Upvotes: 0

maialithar
maialithar

Reputation: 3123

Zend Studio is just an IDE - an environment which is supposed to make developer's life easier. You need a server to run your projects on localhost. You quoted

After you have installed Zend Server,

and you wrote

I didn't download Zend Framework or installed Zend Server,

You can't expect the tutprail to work if you don't do what it says.

Upvotes: 2

Related Questions