Commit a6aa60b4b24daecaf100b8ad8b5faf7f17e3d3b5

Authored by Kevin Fourie
1 parent 2e8b8edb

KTS-3048

"External Dependencies missing after upgrade"
In Progess. Updated the upgrade config functions.

Committed By: Kevin Fourie
Reviewed By: Conrad Vermeulen

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8095 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 7 additions and 4 deletions
setup/upgrade.php
@@ -1076,14 +1076,14 @@ function Upgrade() @@ -1076,14 +1076,14 @@ function Upgrade()
1076 if (PEAR::isError($pre_res)) 1076 if (PEAR::isError($pre_res))
1077 { 1077 {
1078 ?> 1078 ?>
1079 -<font color="red">Pre-Upgrade actions failed.</font> 1079 +<font color="red">Pre-Upgrade actions failed.</font><br>
1080 <?php 1080 <?php
1081 } 1081 }
1082 else 1082 else
1083 { 1083 {
1084 ?> 1084 ?>
1085 <p> 1085 <p>
1086 -<font color="green">Pre-Upgrade actions succeeded.</font> 1086 +<font color="green">Pre-Upgrade actions succeeded.</font><br>
1087 <?php 1087 <?php
1088 } 1088 }
1089 ?> 1089 ?>
@@ -1110,14 +1110,17 @@ function Upgrade() @@ -1110,14 +1110,17 @@ function Upgrade()
1110 if (PEAR::isError($post_res)) 1110 if (PEAR::isError($post_res))
1111 { 1111 {
1112 ?> 1112 ?>
1113 -<font color="red">Post-Upgrade actions failed.</font> 1113 +<font color="red">Post-Upgrade actions failed.</font><br><br>
1114 <?php 1114 <?php
1115 } 1115 }
1116 else 1116 else
1117 { 1117 {
1118 ?> 1118 ?>
1119 <p> 1119 <p>
1120 -<font color="green">Post-Upgrade actions succeeded.</font> 1120 +<font color="green">Post-Upgrade actions succeeded.</font><br><br>
  1121 +<script>
  1122 + alert("To complete the upgrade please do the following before continuing:\n\n1. Restart the KnowledgeTree services as appropriate for your environment.\n\n\nOn first run of your upgraded KnowledgeTree installaton please do the following:\n\n1. Hard refresh your bowser (CTRL-F5) on first view of the KnowledgeTree Dashboard.\n2. Enable the new plugins you wish to use.\n\n\nSelect 'next' at the bottom of this page to continue.")
  1123 +</script>
1121 <?php 1124 <?php
1122 } 1125 }
1123 ?> 1126 ?>