mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-28 23:42:59 +03:00
14 lines
323 B
PHP
14 lines
323 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/db.php');
|
||
|
|
||
|
if (get_magic_quotes_gpc())
|
||
|
{
|
||
|
echo "Please disable magic quotes in your php.ini configuration";
|
||
|
exit;
|
||
|
}
|