view config/config.php @ 16:0bbf7b85d005

bug fixed: update section tables
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Wed, 15 Jul 2015 12:03:22 +0200
parents 3d206aa0c77d
children 2e6bf16b0be3
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://localhost:8080/LGServices/";
}

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

?>