mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-28 14:22:19 +03:00
5ccb499a6f
Executables (including websites) need to be installed in the build directory, so that they can find the right settings.php. settings now defines build and source dir.
12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
|
|
require_once(CONST_BasePath.'/lib/lib.php');
|
|
require_once(CONST_BasePath.'/lib/leakybucket.php');
|
|
require_once(CONST_BasePath.'/lib/db.php');
|
|
|
|
if (get_magic_quotes_gpc())
|
|
{
|
|
echo "Please disable magic quotes in your php.ini configuration\n";
|
|
exit;
|
|
}
|