2008-04-09 08:57:39 +00:00
==== UPGRADE instructions ====
2009-01-12 14:21:21 +00:00
=== From version 0.91 to 0.92 ===
- Backup you database
- Make a copy from your SemanticScuttle Web directory
- Upgrade your database by following instructions ONE after ONE (order is important) :
2009-01-12 16:56:32 +00:00
* ALTER TABLE `sc_bookmarks` ADD `bPrivateNote` VARCHAR( 1500 ) NULL AFTER `bDescription` ;
2009-01-12 16:40:39 +00:00
2009-01-12 14:21:21 +00:00
- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
* Add variable : $descriptionAnchors = array("author", "isbn", "address"=>"[address][street][/street][city][/city][/address]"); #add a possible anchor (structured content) for bookmarks' description field
2008-11-21 10:44:28 +00:00
=== From version 0.90 to 0.91 ===
2008-11-13 14:38:04 +00:00
- Backup you database
- Make a copy from your SemanticScuttle Web directory
- Upgrade your database by following instructions ONE after ONE (order is important) :
2009-01-05 16:16:21 +00:00
* ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` VARCHAR( 1500 )
* CREATE TABLE `sc_tagscache` (
`tcId` int(11) NOT NULL auto_increment,
`tag1` varchar(100) NOT NULL default '',
`tag2` varchar(100) NOT NULL default '',
`relationType` varchar(32) NOT NULL default '',
`uId` int(11) NOT NULL default '0',
PRIMARY KEY (`tcId`),
UNIQUE KEY `sc_tagscache_tag1_tag2_type_uId` (`tag1`,`tag2`,`relationType`,`uId`)
);
2008-11-21 10:44:28 +00:00
- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
* Delete last line : include_once('debug.inc.php');
2009-01-05 15:50:03 +00:00
* Add variable: $menu2Tags = array('example', 'of', 'menu', 'tags');
2008-11-21 10:44:28 +00:00
* Add variable: $debugMode = true; # if true, show debug messages
=== From version 0.89 to 0.90 ===
- Backup you database
- Make a copy from your SemanticScuttle Web directory
2008-11-13 14:38:04 +00:00
- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
# add these lines under $enableWebsiteThumbnails = false; # enableWebsiteThumbnails {true|false}:
$thumbnailsUserId = '';
$thumbnailsKey = '';
2008-04-09 08:57:39 +00:00
=== From version 0.88 to 0.89 ===
- Backup you database
- Make a copy from your SemanticScuttle Web directory
2008-06-12 12:57:07 +00:00
- Upgrade your database by following instructions ONE after ONE (order is important) :
2008-04-21 08:44:44 +00:00
* change the table called 'sc_tags' into 'sc_bookmarks2tags' by executing the following SQL commands (after changing 'yourdatabasename' and adapting its name prefix 'sc_' to your convenience):
RENAME TABLE `yourdatabasename`.`sc_tags` TO `yourdatabasename`.`sc_bookmarks2tags` ;
* add the following table (adapt its name prefix to your convenience) executing the following SQL commands:
2008-04-09 08:57:39 +00:00
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`)
);
2008-05-13 17:27:47 +00:00
CREATE TABLE `sc_tags` (
`tId` int(11) NOT NULL auto_increment,
`tag` varchar(32) NOT NULL default '',
`uId` int(11) NOT NULL default '0',
`tDescription` varchar(255) default NULL,
PRIMARY KEY (`tId`),
UNIQUE KEY `sc_tags_tag_uId` (`tag`, `uId`)
);
2008-04-09 08:57:39 +00:00
- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
2008-06-12 12:57:07 +00:00
# add line:
2008-04-09 08:57:39 +00:00
$sizeSearchHistory = 10;
2008-06-12 12:57:07 +00:00
# add sidebar block index line:
2008-05-28 12:28:52 +00:00
$index_sidebar_blocks = array('search','menu','users','popular');
2008-06-12 12:57:07 +00:00
# add line:
2008-06-01 13:17:54 +00:00
$enableGoogleCustomSearch = true;
2008-03-14 14:13:48 +00:00