# -*- apache -*-
#
#  THIS FILE IS SUPPOSED TO COME WITH THE DEBIAN PACKAGE. PATH WILL BE
#  ERRONEOUS FOR A HAND-MADE INSTALLATION
#
#  Written for apache 1.x
#  If you use apache 2.x, read INSTALL.verbose shipped with Savane
#
####################################################################
# TROUBLESHOOTING:
#
# Make sure
#     LoadModule env_module /usr/lib/apache/1.3/mod_env.so
# exists anywhere in your apache setup (usually /etc/apache/modules.conf). 
# 
# Make sure AddDefaultCharset if set off, like this
#     AddDefaultCharset off
# (usually /etc/apache/httpd.conf). 
#
# Make sure that php accept file upload. In the php.ini file, add
# the following:
#
# ; Whether to allow HTTP file uploads.
#  file_uploads = on
#
# Make sure that php register_globals is set to "on". It is
# set by default on old PHP packages but not in newer ones. In the
# php.ini file, add the following:
#
#  register_globals = on
#
####################################################################  

Alias /savane /usr/share/savane-frontend-php

<IfModule mod_env.c>
    SetEnv SAVANE_CONF /etc/savannah
</IfModule>

<Location /savane>
    AllowOverride All
</Location>
