diff config/config.php @ 51:840cdb52f476 extractapp

add book_meta into file
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Thu, 26 Mar 2015 15:42:50 +0100
parents 3e42a63de0ea
children a11f9103b8db
line wrap: on
line diff
--- a/config/config.php	Thu Mar 19 09:53:26 2015 +0100
+++ b/config/config.php	Thu Mar 26 15:42:50 2015 +0100
@@ -1,26 +1,27 @@
 <?php
 
-$at_local = true;
+$at_local = false;
 
 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/";
+	$server_host = "http://localgazetteers-dev/";
+	$lgserver_url = $server_host."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";
+	$server_host = "http://localhost:1080/localgazetteers-dev/";
 	$lgserver_url = "http://localgazetteers-dev/LGServer/";
 }
 
+$systemNAME = "interface";
+$system_root_url = $server_host."extraction-interface";
+
 ?>