Stupid quiz thing I was asked to do a while back...
  • PHP 97.3%
  • HTML 1.8%
  • Less 0.7%
  • CSS 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2012-01-30 12:50:36 +00:00
admin Adding quiz 2012-01-25 11:22:28 +00:00
application git-svn-id: http://svn.turbocrms.com/code/projects/Quiz/trunk@489 c29433ff-1b1d-4321-a7e5-4b4d3a6625c3 2012-01-30 12:50:36 +00:00
application_admin Adding quiz 2012-01-25 11:22:28 +00:00
docs Adding quiz 2012-01-25 11:22:28 +00:00
library/Zend Adding quiz 2012-01-25 11:22:28 +00:00
public Adding quiz 2012-01-25 11:22:28 +00:00
tests Adding quiz 2012-01-25 11:22:28 +00:00

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.


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

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

<VirtualHost *:80>
   DocumentRoot "/home/likewise-open/DOCNET/mbaggett/www/oddjob/public"
   ServerName oddjob.local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development
    
   <Directory "/home/likewise-open/DOCNET/mbaggett/www/oddjob/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>
    
</VirtualHost>