X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/65ee7a80025fae93287960a6cb1f4026f99cd7f3..0947b618085f7d46515a3ec06cab5ed818e8635f:/utils/check_import_finished.php?ds=sidebyside diff --git a/utils/check_import_finished.php b/utils/check_import_finished.php index 4529c693..6623f0c8 100755 --- a/utils/check_import_finished.php +++ b/utils/check_import_finished.php @@ -1,6 +1,8 @@ "\033[92m", @@ -35,7 +37,7 @@ if ($oDB->checkConnection()) { echo <<< END Hints: * Is the database server started? - * Check the CONST_Database_DSN variable in build/settings/local.php + * Check the NOMINATIM_DATABASE_DSN variable in your local .env * Try connecting to the database with the same settings END; @@ -106,7 +108,6 @@ $aExpectedIndices = array( 'idx_placex_rank_address', 'idx_placex_pendingsector', 'idx_placex_parent_place_id', - 'idx_placex_geometry_reverse_lookuppoint', 'idx_placex_geometry_reverse_lookuppolygon', 'idx_placex_geometry_reverse_placenode', 'idx_location_area_country_place_id', @@ -133,7 +134,8 @@ foreach ($aExpectedIndices as $sExpectedIndex) { $print_fail(); echo <<< END Hints: - * Rerun the setup.php --create-search-indices step + * Run './utils/setup.php --create-search-indices --ignore-errors' to + create missing indices. END; exit(1); @@ -166,7 +168,7 @@ END; -if (CONST_Use_US_Tiger_Data) { +if (getSettingBool('USE_US_TIGER_DATA')) { echo 'Checking TIGER table exists ... '; if ($oDB->tableExists('location_property_tiger')) { $print_success();