2008-04-09 10:57:39 +02:00
|
|
|
==== 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');
|
2008-03-14 15:13:48 +01:00
|
|
|
|
|
|
|
|