Go to file
2010-08-30 07:49:44 +00:00
.settings Import source du webservice version 2 2010-08-30 07:49:44 +00:00
application Import source du webservice version 2 2010-08-30 07:49:44 +00:00
docs Import source du webservice version 2 2010-08-30 07:49:44 +00:00
library Import source du webservice version 2 2010-08-30 07:49:44 +00:00
public Import source du webservice version 2 2010-08-30 07:49:44 +00:00
.buildpath Import source du webservice version 2 2010-08-30 07:49:44 +00:00
.project Import source du webservice version 2 2010-08-30 07:49:44 +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
=====================

Exemple de vhost en mode développement

<VirtualHost *:80>
    ServerName scoresws.sd.dev
	AddDefaultCharset utf-8
	DocumentRoot "D:/www/scoresws/public"	
	
	SetEnv APPLICATION_ENV "development"
	
	<Directory "D:/www/scoresws/public/">
		DirectoryIndex index.php
		AllowOverride All
        Order allow,deny
        Allow from all  
	</Directory>
	
	# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
    LogLevel debug
    ErrorLog "logs/scoresws.sd.dev-error.log"
    CustomLog "logs/scoresws.sd.dev-access.log" common
</VirtualHost>