views:

125

answers:

3

Hai

I want to create a project in Zend framework, but I don't know any idea about how to include this zend framework in to wamp server. Any one please helps me...?

Thanks in advance..

+2  A: 

Hi,

It seems you need a tutorial to start from scratch, I'd say.

Here are a couple of links that could interest you :

Those might be helpful, for you to start.


And here are some other resources :

Pascal MARTIN
A: 

Hi,

i used this tutorial when i started to work with zf:

http://www.ibm.com/developerworks/library/os-php-zend1/

It's from 2006 but you should get the clue.

Have fun!

460128900
A: 

All you need to do is ensure that the Zend/lib directory from the framework download is in your include path.

That should work just as well on WAMP as it does anywhere else.

I haven't configured an IIS server in ages... but it's probably just as easy as a nicely crafted "ini_set('include_path",'..') in your bootstrap script.

Once you've got Zend/lib in your include path, you can include (or autoload) Zend things as needed.

timdev