#
# look for these filenames as the directory index
#
#DirectoryIndex index.html index.htm index.php3

<IfModule mod_php3.c>
#
# local settings for php in this domain
# include path is the path where PHP looks for 
# required and included files
#
php3_include_path ".:./lib:./lib/phplib:./lib/template"

#
# use for debugging - shows PHP errors in browser
#
php3_error_reporting 7
php3_display_errors On

#
# tell PHP to track HTTP variables
#
php3_track_vars On
php3_magic_quotes_gpc Off
php3_magic_quotes_runtime Off
php3_magic_quotes_sybase Off

#
# allows pages to be run
# throught the PHP interpretor
AddType application/x-httpd-php3 .php3
</IfModule>

<IfModule mod_php4.c>
php_value include_path ".:./lib:./lib/phplib:./lib/template"
php_flag track_vars on
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
AddType application/x-httpd-php .php .php3
</IfModule>

