Tuesday, January 4, 2011

Zend Framework Realy Easy Simple Fast

1) Download and install XAMPP.
2) Start->Accessories->Command Prompt and type
zf create project c:\MyProject
3) Go to XAMPP installation folder and find the file httpd-vhosts.conf
xampp\apache\conf\extra\httpd-vhosts.conf
Add these lines

Listen 10099
<VirtualHost *:10099>
DocumentRoot "c:\MyProject\public"
<Directory "c:\MyProject\public">
Order allow,deny
Allow from all
AllowOverride all
</Directory>
</VirtualHost>

save the file
4) Start Apache from XAMPP Panel or restart it if it is already running to read the configuration file again
5) Point your browser to httP://localhost:10099 You should see the Zend blue new project welcome screen.

For more information read my blog Zend Framework Start in 2 easy steps . It is ready, I may publish it.

No comments:

Post a Comment