mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
15 lines
379 B
PHP
15 lines
379 B
PHP
<?php
|
|
|
|
@define('CONST_BasePath', dirname(dirname(__FILE__)));
|
|
|
|
require_once(CONST_BasePath.'/settings/settings.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;
|
|
}
|