/Kartaca-WBVS

A simple Web Based Voting System built with Zend Framework and jQuery.

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

README
======

This directory should be used to place project specfic documentation including
but not limited to project notes, generated API/phpdoc documentation, or 
manual files generated or hand written.  Ideally, this directory would remain
in your development environment only and should not be deployed with your
application to it's final production location.

This project is based on ZF-Blog project. You can find it here:

https://code.kartaca.com/zf-blog

Setting Up Your VHOST
=====================

The following is a sample VHOST you might want to consider for your project.

<VirtualHost *:80>
   DocumentRoot "/Users/roysimkes/Sites/zf-examples/kartaca-wbvs/public"
   ServerName kartaca-wbvs.local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development
    
   <Directory "/Users/roysimkes/Sites/zf-examples/kartaca-wbvs/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>
    
</VirtualHost>


You don't actually need to create a virtual host. However it helps to create one
as you do not require to add any prefixes to the urls you are creating.