]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Upgrade: add upgrade information
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Fri, 14 Mar 2008 14:13:48 +0000 (14:13 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Fri, 14 Mar 2008 14:13:48 +0000 (14:13 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@83 b3834d28-1941-0410-a4f8-b48e95affb8f

.htaccess
upgrade.txt [new file with mode: 0644]

index f0ee85989ead7e5126618309c0f53123e5e6daeb..323c2fa4c22f7fe6ea62a7f454dd6409f9b31299 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -2,7 +2,7 @@
 # (see $cleanurls in config.inc.php)
 
 Options +FollowSymlinks
-AcceptPathInfo On
+AcceptPathInfo On
 RewriteEngine On
 RewriteBase /
 RewriteCond %{REQUEST_FILENAME} !-f
diff --git a/upgrade.txt b/upgrade.txt
new file mode 100644 (file)
index 0000000..dbbbbcf
--- /dev/null
@@ -0,0 +1,26 @@
+
+
+======================================================================
+=== 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;
+
+