view config/config.php @ 7:23dcd1b5e9c4 default tip

add keywords highlighting on searching result
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 16 Nov 2015 16:58:39 +0100
parents 4b9ae7d500f9
children
line wrap: on
line source

<?php

$at_local = true;

if (!$at_local) {
	// host at localgazetteers-dev server
	$mysql_database = "Gazetteer";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "admin";
	$server_host = "http://localgazetteers.mpiwg-berlin.mpg.de/";
	$lgserver_url = $server_host."LGServices/";

} else {
	// localhost
	$mysql_database = "Gazetteer";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "root";
	$server_host = "http://localhost:1080/localgazetteers-dev/";
	$lgserver_url = "http://localgazetteers-dev/LGServices/";

}

$systemNAME = "interface";
$system_root_url = $server_host."LGSearch/";
$password = "1cookies";
?>