summaryrefslogtreecommitdiffstatshomepage
path: root/upgrade.txt
diff options
context:
space:
mode:
authorGravatar ericdane2008-04-09 08:57:39 +0000
committerGravatar ericdane2008-04-09 08:57:39 +0000
commit8e4d0718e2b575a85e653ce9cd3ce4728103ddfb (patch)
treeeba3bd7597cc1ce0c63c3dd5e5e5aeba2c19a5e0 /upgrade.txt
parent5a98ec2f889d1980a3c4b21ceea2e5aec5091932 (diff)
downloadscuttle-8e4d0718e2b575a85e653ce9cd3ce4728103ddfb.tar.gz
scuttle-8e4d0718e2b575a85e653ce9cd3ce4728103ddfb.zip
minor style change, add index_sidebar_blocks
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@100 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'upgrade.txt')
-rw-r--r--upgrade.txt46
1 files changed, 22 insertions, 24 deletions
diff --git a/upgrade.txt b/upgrade.txt
index dbbbbcf..9891ac9 100644
--- a/upgrade.txt
+++ b/upgrade.txt
@@ -1,26 +1,24 @@
-
-
-======================================================================
-=== From SemanticScuttle 0.88 to 0.89
-======================================================================
-
-==== Backup
-Backup your database. Make a copy from your SemanticScuttle directory.
-
-==== In your database, add the following table (modify the table name if necessary):
-
-CREATE TABLE `sc_searchhistory` (
- `shId` int(11) NOT NULL auto_increment,
- `shTerms` varchar(255) NOT NULL default '',
- `shRange` varchar(32) NOT NULL default '',
- `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
- `shNbResults` int(6) NOT NULL default '0',
- `uId` int(11) NOT NULL default '0',
- PRIMARY KEY (`shId`)
-);
-
-=== In your configuration file (config.inc.php), add manually at the end of the file (for help, compare with last version of config.inc.php.example)
-
-$sizeSearchHistory = 10;
+==== UPGRADE instructions ====
+
+=== From version 0.88 to 0.89 ===
+- Backup you database
+- Make a copy from your SemanticScuttle Web directory
+- Upgrade your database : add the following table (adapt its name prefix to your convenience) executin the following SQL commands:
+
+ CREATE TABLE `sc_searchhistory` (
+ `shId` int(11) NOT NULL auto_increment,
+ `shTerms` varchar(255) NOT NULL default '',
+ `shRange` varchar(32) NOT NULL default '',
+ `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
+ `shNbResults` int(6) NOT NULL default '0',
+ `uId` int(11) NOT NULL default '0',
+ PRIMARY KEY (`shId`)
+ );
+
+- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
+ - add line:
+ $sizeSearchHistory = 10;
+ - add sidebar block index line:
+ $index_sidebar_blocks = array('search','users','linked','recent');