*Manual installation only
################################################################################
###################################   LINUX   ##################################
################################################################################

1. Unzip the package to your server. We recommend that you do this under the
   Apache "htdocs" folder (This the default path for apache)

   a. Open a linux sheel and login as the sustem administrator (root)
      su

   b. tar xvfz filestogether.zip -C /yourapachepath/htdocs

################################################################################
###################################  WINDOWS  ##################################
################################################################################

1. Unzip the package to your server. We recommend that you do this under the
   "c:\program files" folder (This the path that the examples use).

################################################################################
################################ WINDOWS/LINUX  ################################
################################################################################

2. APACHE web server configuration
   Insert the following (with the appropriate <installpath> set) into your apache
   configuration file (httpd.conf).
   You may need to re-start the apache web server for the settings to take effect
   You do NOT need to insert any of the comments .
   (apache comment lines begin with a #)
   Security Note: The configuration also prevents the ini files from being downloaded
                  and we recommend that this is maintained and checked.

################################################################################
Alias /filestogether "<installpath>\anywheretogether\applications\filestogether"
#
# Example
#Alias /filestogether "C:\Program Files\anywheretogether\applications\filestogether"

<Directory "<installpath>\anywheretogether\applications\filestogether">
   <FilesMatch \.(?i:ini|INI)$>
     Order allow,deny
     Deny from all
   </FilesMatch>
   Options MultiViews
   DirectoryIndex filestogether.php
   Order allow,deny
   Allow from all
</Directory>
#
# Example
#<Directory "C:\Program Files\anywheretogether\applications\filestogether">
#   <FilesMatch \.(?i:ini|INI)$>
#     Order allow,deny
#     Deny from all
#   </FilesMatch>
#   Options MultiViews
#   DirectoryIndex filestogether.php
#   Order allow,deny
#   Allow from all
#</Directory>
#
################################################################################

################################################################################
#####################################  IIS  ####################################
################################################################################

See the "files together.chm" file in the "anywheretogether/applications filestogether/help" folder
for details how to set this up.

