From a49f63c7da98d13ef616954274836020b8a51b17 Mon Sep 17 00:00:00 2001 From: Edward Date: Wed, 3 Oct 2018 11:32:46 +0800 Subject: [PATCH] UpdateDatabase.php --- UpdateDatabase.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/UpdateDatabase.php b/UpdateDatabase.php index 9164a218..e0864686 100644 --- a/UpdateDatabase.php +++ b/UpdateDatabase.php @@ -193,7 +193,7 @@ class Pman_Core_UpdateDatabase extends Pman } // ask all the modules to verify the opts - echo "Checi options\n"; + echo "Checking options\n"; $this->checkOpts($opts); $response = $this->curl("http://localhost{$this->local_base_url}/Core/UpdateDatabase/VerifyExtensions"); @@ -206,6 +206,11 @@ class Pman_Core_UpdateDatabase extends Pman exit; } + echo "Checking Setup Requirements\n"; + require_once 'Pman/Core/UpdateDatabase/SetupRequirement.php'; + $sq = new Pman_Core_UpdateDatabase_SetupRequirement(); + $sq->get(); + // do this first, so the innodb change + utf8 fixes column max sizes // this will trigger errors about freetext indexes - we will have to remove them manually.? -- 2.39.2