minor style change, add index_sidebar_blocks

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@100 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
ericdane 2008-04-09 08:57:39 +00:00
parent 5a98ec2f88
commit 8e4d0718e2

View file

@ -1,26 +1,24 @@
==== UPGRADE instructions ====
====================================================================== === From version 0.88 to 0.89 ===
=== From SemanticScuttle 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:
==== Backup
Backup your database. Make a copy from your SemanticScuttle directory. CREATE TABLE `sc_searchhistory` (
`shId` int(11) NOT NULL auto_increment,
==== In your database, add the following table (modify the table name if necessary): `shTerms` varchar(255) NOT NULL default '',
`shRange` varchar(32) NOT NULL default '',
CREATE TABLE `sc_searchhistory` ( `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
`shId` int(11) NOT NULL auto_increment, `shNbResults` int(6) NOT NULL default '0',
`shTerms` varchar(255) NOT NULL default '', `uId` int(11) NOT NULL default '0',
`shRange` varchar(32) NOT NULL default '', PRIMARY KEY (`shId`)
`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', - Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
PRIMARY KEY (`shId`) - add line:
); $sizeSearchHistory = 10;
- add sidebar block index line:
=== 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) $index_sidebar_blocks = array('search','users','linked','recent');
$sizeSearchHistory = 10;