comparison develop/config/config.php @ 40:2e938dc046db extractapp

load,save xml file with topic, etc.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 10 Mar 2015 13:46:16 +0100
parents 8347776a44fc
children c245d54eab9f
comparison
equal deleted inserted replaced
39:8347776a44fc 40:2e938dc046db
1 <?php 1 <?php
2 2
3 // localhost 3 $at_local = false;
4 $systemNAME = "interface";
5 $mysql_database = "Gazetteers";
6 $mysql_server = "localhost";
7 $mysql_user = "root";
8 $mysql_password = "root";
9 4
10 $system_root_url = "http://localhost:1080/extraction-interface/develop"; 5 if (!$at_local) {
6 // host at localgazetteers-dev server
7 $systemNAME = "interface";
8 $mysql_database = "Gazetteer";
9 $mysql_server = "localhost";
10 $mysql_user = "root";
11 $mysql_password = "admin";
12 $system_root_url = "http://localgazetteers-dev/extraction-interface/develop";
11 13
14 } else {
15 // localhost
16 $systemNAME = "interface";
17 $mysql_database = "Gazetteers";
18 $mysql_server = "localhost";
19 $mysql_user = "root";
20 $mysql_password = "root";
21 $system_root_url = "http://localhost:1080/extraction-interface/develop";
22 }
12 23
13 ?> 24 ?>