view config/config.php @ 11:0a03c75499e6

bug fixed: sessionId after saving
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 22 Jun 2015 15:12:58 +0200
parents 2c35af0d78f3
children 7e04cbe8b2a0
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-test.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/LGServer/";
	$lgserver_url = "http://localhost:8080/LGServices/";
}

$systemNAME = "interface";
$system_root_url = $server_host."LGToc/";

?>