]> git.openstreetmap.org Git - nominatim.git/commitdiff
Updated setup.php
authorK Rahul Reddy <k_rahul_reddy@outlook.com>
Fri, 19 Jun 2020 16:22:56 +0000 (21:52 +0530)
committerK Rahul Reddy <k_rahul_reddy@outlook.com>
Sat, 27 Jun 2020 05:15:53 +0000 (10:45 +0530)
utils/setup.php

index db17b8f51290fcc9ad747d7e1b76c3bfc152e7e6..e0f74427cb46b69c8dfe6e08ffe029e62fe76ad6 100644 (file)
@@ -77,15 +77,17 @@ if ($aCMDResult['create-db'] || $aCMDResult['all']) {
     $oSetup->createDB();
 }
 
-$oSetup->connect();
+if (!$aCMDResult['setup-website']) {
+    $oSetup->connect();
+    // Try accessing the C module, so we know early if something is wrong
+    checkModulePresence(); // raises exception on failure
+}
 
 if ($aCMDResult['setup-db'] || $aCMDResult['all']) {
     $bDidSomething = true;
     $oSetup->setupDB();
 }
 
-// Try accessing the C module, so we know early if something is wrong
-checkModulePresence(); // raises exception on failure
 
 if ($aCMDResult['import-data'] || $aCMDResult['all']) {
     $bDidSomething = true;