view config.php @ 0:723a162b6627

first commit
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Thu, 19 Mar 2015 15:06:34 +0100
parents
children bd46d26a7b18
line wrap: on
line source

<?php

$at_local = true;

if (!$at_local) {
	// host at localgazetteers-dev server
	$systemNAME = "interface";
	$mysql_database = "Gazetteer";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "admin";
	$system_root_url = "http://localgazetteers-dev/extraction-interface";
	$lgserver_url = "http://localgazetteers-dev/LGServer/";

} else {
	// localhost
	$systemNAME = "interface";
	$mysql_database = "Gazetteers";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "root";
	$system_root_url = "http://localhost:1080/localgazetteers-dev/extraction-interface";
	$lgserver_url = "http://localgazetteers-dev/LGServer/";
}

?>