# +---------------------------------------------------------------------------------------+
# | TenderSystem                                                                          |
# +---------------------------------------------------------------------------------------+
# | The contents of this file are subject to the TenderSystem Public License Version 1.1  |
# | ("License"); you may not use this file except in compliance with the License. You may |
# | obtain a copy of the License at http://www.tendersystem.com/tpl/                      |
# |                                                                                       |
# | Software distributed under the License is distributed on an "AS IS" basis, WITHOUT    |
# | WARRANTY OF ANY KIND, either express or implied. See the License for the specific     |
# | language governing rights and limitations under the License.                          |
# |                                                                                       |
# | All copies of the Covered Code must include the "Powered by TenderSystem" logo and    |
# | ValueCard copyright notice on every user interface screen and in every outgoing       |
# | email in the same form as they appear in the distribution.                            |
# |                                                                                       |
# | The Original Code is: TenderSystem                                                    |
# | The Initial Developer of the Original Code is ValueCard (Pty) Limited.                |
# | Portions created by ValueCard are Copyright (C) 2002 ValueCard (Pty) Limited.         |
# | All Rights Reserved.                                                                  |
# | Contributor(s): __________________.                                                   |
# +---------------------------------------------------------------------------------------+

# set indexing and links
Options -Indexes
Options +FollowSymLinks

# 404 divert
ErrorDocument 404 /index.php

# default page
DirectoryIndex index.php index.html

# run time PHP settings

# PHP4 / Apache 1
<IfModule mod_php4.c>
	php_value magic_quotes_gpc                0
	php_value register_globals                0
	php_value session.auto_start              0
</IfModule>

# PHP4 / Apache 2
<IfModule sapi_apache2.c>
	php_value magic_quotes_gpc                0
	php_value register_globals                0
	php_value session.auto_start              0
</IfModule>

# PHP 5
<IfModule mod_php5.c>
	php_value magic_quotes_gpc                0
	php_value register_globals                0
	php_value session.auto_start              0
</IfModule>