Mercurial > hg > extraction-interface
comparison config/config.php @ 47:886f43b26ee2 extractapp
move/remove develop folder
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Tue, 17 Mar 2015 10:54:13 +0100 |
parents | |
children | c98a0c6d7eb4 |
comparison
equal
deleted
inserted
replaced
46:b3ca5d2b4d3f | 47:886f43b26ee2 |
---|---|
1 <?php | |
2 | |
3 $at_local = true; | |
4 | |
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"; | |
13 $lgserver_url = "http://localgazetteers-dev/LGServer/"; | |
14 | |
15 } else { | |
16 // localhost | |
17 $systemNAME = "interface"; | |
18 $mysql_database = "Gazetteers"; | |
19 $mysql_server = "localhost"; | |
20 $mysql_user = "root"; | |
21 $mysql_password = "root"; | |
22 $system_root_url = "http://localhost:1080/extraction-interface"; | |
23 $lgserver_url = "http://localgazetteers-dev/LGServer/"; | |
24 } | |
25 | |
26 ?> |