==========================
|| INSTALLING Mnemo 1.1 ||
==========================

This document contains instructions for installing the Mnemo web-based
notes application on your system.

For information on the capabilities and features of Mnemo, see the
file README in the top-level directory of the Mnemo distribution.


OBTAINING Mnemo
---------------

Mnemo can be obtained from the Horde website and FTP server, at

   http://www.horde.org/mnemo/
   ftp://ftp.horde.org/pub/mnemo/

Bleeding-edge development versions of Mnemo are available via CVS; see
the file docs/HACKING in the Horde distribution for information on
accessing the Horde CVS repository.


PREREQUISITES
-------------

To function properly, Mnemo requires the following:

  1. A working Horde installation.

     Mnemo runs within the Horde Application Framework, a set of
     common tools for Web applications written in PHP. You must
     install Horde before installing Mnemo.

     The Horde Framework can be obtained from the Horde website and
     FTP server, at

        http://www.horde.org/horde/
        ftp://ftp.horde.org/pub/horde/

     Many of Mnemo's prerequisites are also Horde prerequisites.
     Be sure to have completed all of the steps in the INSTALL
     file for the Horde Framework before installing Mnemo.

  2. SQL support in PHP.

     Mnemo store its data in an SQL database. Build PHP with whichever
     SQL driver you require; see the Horde INSTALL file for details.


INSTALLING Mnemo
----------------

Mnemo is written in PHP, and must be installed in a web-accessible
directory. The precise location of this directory will differ from
system to system. Conventionally, Mnemo is installed directly underneath
Horde in the webserver's document tree.

Since Mnemo is written in PHP, there is no compilation necessary;
simply expand the distribution where you want it to reside and rename
the root directory of the distribution to whatever you wish to appear
in the URL. For example, with the Apache webserver's default document
root of '/usr/local/apache/htdocs', you would type:

   cd /usr/local/apache/htdocs/horde
   tar zxvf /path/to/mnemo-1.0.tar.gz
   mv mnemo-1.0 mnemo

and would then find Mnemo at the URL

   http://your-server/horde/mnemo/


CONFIGURING Mnemo
---------------

1. Configuring Horde for Mnemo

   a. Register the application

      In horde/config/registry.php, find the applications['mnemo'] stanza.
      The 'show' parameter should be marked '=> true'. If you have Horde 2.2
      or greater, the 'status' parameter should be marked '=> 'active''.
      If you have changed the location of Mnemo relative to Horde,
      either in the URL or in the filesystem or both, then you must
      update the 'fileroot' and 'webroot' settings to their correct
      values.

2. Creating the database table

   The specific steps to create the Mnemo database table depend
   on which database you've chosen to use.

   First, look in scripts/drivers/ to see if a script already
   exists for your database type. If so, you should be
   able to simply execute that script as superuser in your
   database. (Note that executing the script as the "horde" user will
   probably fail when granting privileges.)

   If such a script does not exist, you'll need to build your own, using
   the file mnemo_notes.sql as a starting point. If you need
   assistance in creating databases, you may wish to let us know on
   the Mnemo mailing list.

3. Configuring Mnemo.

   To configure Mnemo, change to the config/ directory of the
   installed distribution, and make copies of all of the configuration
   "dist" files without the "dist" suffix:

      cd config/
      for foo in *.dist; do cp $foo `basename $foo .dist`; done

   Documentation on the format of those files can be found in each
   file.

   You must at least configure Mnemo in conf.php.

   The other files in config/ need only be modified if you wish
   to customize Mnemo's appearance or behavior, as the defaults will
   be correct for most sites.

   Note for international users:  Mnemo uses GNU gettext to provide local
   translations of text displayed by applications; the translations are
   found in the po/ directory.  If a translation is not yet available
   for your locale (and you wish to create one), or if you're having
   trouble using a provided translation, please see the horde/po/README file
   for instructions.

4. Testing Mnemo

   Use Mnemo to create, modify, and delete notes. Test at
   least the following:

     - Creating a new memo
     - Modifying a memo
     - Deleting a memo


OBTAINING SUPPORT
-----------------

If you encounter problems with Mnemo, help is available!

The Horde Frequently Asked Questions List (FAQ), available on the Web
at

  http://www.horde.org/faq/

The Horde Project runs a number of mailing lists, for individual
applications and for issues relating to the project as a whole.
Information, archives, and subscription informatoin can be found at

  http://www.horde.org/mail/

Lastly, Horde developers, contributors and users also make occasional
appearances on IRC, on the channel #horde on the Freenode Network
(irc.freenode.net).

Please keep in mind that Mnemo is free software written by volunteers.
For information on reasonable support expectations, please read

  http://www.horde.org/support.php

Thanks for using Mnemo!

The Horde team
mnemo@lists.horde.org

$Horde: mnemo/docs/INSTALL,v 1.4.2.3 2004/02/23 00:06:29 jan Exp $
