Error starting project with zend Framework

0

I followed the step by step tutorial of zend but it is not working when I try to initialize the project by netbeans.Sou new, I just started training people who can please help.

    
asked by anonymous 08.06.2016 / 02:49

1 answer

1

In the Apache install folder, find the file httpd.conf (or httpd-vhosts.conf on some systems) and include this block:

<VirtualHost *:80>
ServerName quickstart.local
DocumentRoot /path/to/quickstart/public

SetEnv APPLICATION_ENV "development"

<Directory /path/to/quickstart/public>
    DirectoryIndex index.php
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

Then you replace the DocumentRoot path by the path to where the public folder is in your application.

Here's a great tutorial to get you started: link

    
08.06.2016 / 12:55