X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4b08a08968c0317c38960ad6d8e2ef4099933fe6..e5c901e55dad26584a942be77a2ed4939f85e6cd:/utils/setup.php diff --git a/utils/setup.php b/utils/setup.php index 80c139f7..55e0038c 100755 --- a/utils/setup.php +++ b/utils/setup.php @@ -636,6 +636,13 @@ @symlink(CONST_BasePath.'/website/js', $sTargetDir.'/js'); @symlink(CONST_BasePath.'/website/css', $sTargetDir.'/css'); echo "Symlinks created\n"; + + $sTestFile = @file_get_contents(CONST_Website_BaseURL.'js/tiles.js'); + if (!$sTestFile) + { + echo "\nWARNING: Unable to access the website at ".CONST_Website_BaseURL."\n"; + echo "You may want to update settings/local.php with @define('CONST_Website_BaseURL', 'http://[HOST]/[PATH]/');\n"; + } } if (!$bDidSomething)