Commit 4d5479ce28ba52020c75084a931c66e685d666bb

Authored by Kevin Fourie
1 parent 33ba8093

KTC-637

"'Zend Optimizer not installed' message when attempting to open KnowledgeTree after upgrade from 337Com - 346Com to 354Com on RHEL5"
Updated. Updated the upgrade table.

Committed By: Kevin Fourie
Reviewed By: Megan Watson

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9592 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/upgrades/UpgradeFunctions.inc.php
... ... @@ -97,7 +97,8 @@ class UpgradeFunctions {
97 97 'removeAdminVersionNotifier' => 'Remove the old Admin Version Notifier Plugin.',
98 98 'removeOldSearchPlugins' => 'Remove the old Search Plugins.',
99 99 'addAutoIncrementToTables' => 'Update all current db tables to use auto_increment.',
100   - 'addAutoIncrementToTables2' => 'Update all new db tables to use auto_increment.'
  100 + 'addAutoIncrementToTables2' => 'Update all new db tables to use auto_increment.',
  101 + 'removeOldFilesAndFolders354' => 'Remove old files and folders that are no longer needed.'
101 102 );
102 103 var $phases = array(
103 104 "setPermissionFolder" => 1,
... ...
sql/mysql/install/data.sql
... ... @@ -1730,7 +1730,9 @@ INSERT INTO `upgrades` VALUES
1730 1730 (207,'upgrade*3.5.3*99*upgrade3.5.3','Upgrade from version 3.5.2 to 3.5.3','2008-07-30 00:00:00',1,'upgrade*3.5.3*99*upgrade3.5.3'),
1731 1731 (208,'func*3.5.4*7*createIndexes','Recreate db integrity:Create indexes on the database','2008-10-01 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4'),
1732 1732 (209,'sql*3.5.4*0*3.5.4/max_sql_search_results.sql','Add configurable maximum results for SQL search queries.','2008-07-30 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4'),
1733   -(210,'upgrade*3.5.4*99*upgrade3.5.4','Upgrade from version 3.5.3 to 3.5.4','2008-10-01 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4');
  1733 +(210,'sql*3.5.4*0*3.5.4/server_name.sql','Update the server name.','2008-10-01 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4'),
  1734 +(211,'func*3.5.4*0*removeOldFilesAndFolders354','Remove old files and folders that are no longer needed.','2008-10-01 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4'),
  1735 +(212,'upgrade*3.5.4*99*upgrade3.5.4','Upgrade from version 3.5.3 to 3.5.4','2008-10-01 00:00:00',1,'upgrade*3.5.4*99*upgrade3.5.4');
1734 1736 /*!40000 ALTER TABLE `upgrades` ENABLE KEYS */;
1735 1737 UNLOCK TABLES;
1736 1738  
... ... @@ -2661,7 +2663,7 @@ UNLOCK TABLES;
2661 2663 LOCK TABLES `zseq_upgrades` WRITE;
2662 2664 /*!40000 ALTER TABLE `zseq_upgrades` DISABLE KEYS */;
2663 2665 INSERT INTO `zseq_upgrades` VALUES
2664   -(210);
  2666 +(212);
2665 2667 /*!40000 ALTER TABLE `zseq_upgrades` ENABLE KEYS */;
2666 2668 UNLOCK TABLES;
2667 2669  
... ...