summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar mensonge2008-03-14 14:13:48 +0000
committerGravatar mensonge2008-03-14 14:13:48 +0000
commit99d688529ec6aa1a2c6fd6bd58dcd4f666a324a1 (patch)
tree971e78c005c827df0badea48f0971cf0ff82fa78
parentcf5a9ab9974d1f7bd73af01a61e989f470db911c (diff)
downloadscuttle-99d688529ec6aa1a2c6fd6bd58dcd4f666a324a1.tar.gz
scuttle-99d688529ec6aa1a2c6fd6bd58dcd4f666a324a1.zip
Upgrade: add upgrade information
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@83 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r--.htaccess2
-rw-r--r--upgrade.txt26
2 files changed, 27 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index f0ee859..323c2fa 100644
--- 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
index 0000000..dbbbbcf
--- /dev/null
+++ b/upgrade.txt
@@ -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;
+
+