1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
========================
Upgrading Mnemo
========================
:Last update: $Date: 2008/04/30 03:37:38 $
:Revision: $Revision: 1.1.8.5 $
:Contact: horde@lists.horde.org
These are instructions to upgrade from earlier Mnemo versions. Please
backup your existing data before running any of the steps described below.
Upgrading Mnemo from 2.x to 2.2
===============================
New Beta SQL Share Driver Support
---------------------------------
A new beta-level SQL Horde_Share driver has been added in Horde 3.2. This driver
offers significant performance improvements over the existing Datatree driver,
but it has not received the same level of testing, thus the beta designation.
In order to make use of this driver, you must be using Horde 3.2-RC3 or
later. To create the new tables needed for this driver, execute the provided SQL
script::
mysql --user=root --password=<MySQL-root-password> <db name> < scripts/upgrades/2.1_to_2.2.sql
You must also execute the provided PHP script to migrate your existing share
data to the new format::
php scripts/upgrades/2.1_to_2.2.php
Upgrading Mnemo from 1.1.x to 2.0
=================================
SQL Backends
============
Execute the provided SQL script to update your data to the new Mnemo version::
mysql --user=root --password=<MySQL-root-password> <db name> < scripts/upgrades/1.1_to_2.0.mysql.sql
Categories
==========
Categories are now being maintained centrally for all Horde applications that
support them. To convert the old memo categories execute the provided PHP
script::
php scripts/upgrades/2004-05-19_convert_categories_to_strings.php
|