view config/config.php @ 6:4b9ae7d500f9

add example page, modify password popup
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Wed, 14 Oct 2015 11:01:26 +0200
parents 1cf7bb8db5dd
children 23dcd1b5e9c4
line wrap: on
line source

<?php

$at_local = false;

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";
?>