Mercurial > hg > extraction-interface
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 50:3e42a63de0ea | 51:840cdb52f476 |
|---|---|
| 1 <?php | 1 <?php |
| 2 | 2 |
| 3 $at_local = true; | 3 $at_local = false; |
| 4 | 4 |
| 5 if (!$at_local) { | 5 if (!$at_local) { |
| 6 // host at localgazetteers-dev server | 6 // host at localgazetteers-dev server |
| 7 $systemNAME = "interface"; | |
| 8 $mysql_database = "Gazetteer"; | 7 $mysql_database = "Gazetteer"; |
| 9 $mysql_server = "localhost"; | 8 $mysql_server = "localhost"; |
| 10 $mysql_user = "root"; | 9 $mysql_user = "root"; |
| 11 $mysql_password = "admin"; | 10 $mysql_password = "admin"; |
| 12 $system_root_url = "http://localgazetteers-dev/extraction-interface"; | 11 $server_host = "http://localgazetteers-dev/"; |
| 13 $lgserver_url = "http://localgazetteers-dev/LGServer/"; | 12 $lgserver_url = $server_host."LGServer/"; |
| 14 | 13 |
| 15 } else { | 14 } else { |
| 16 // localhost | 15 // localhost |
| 17 $systemNAME = "interface"; | |
| 18 $mysql_database = "Gazetteers"; | 16 $mysql_database = "Gazetteers"; |
| 19 $mysql_server = "localhost"; | 17 $mysql_server = "localhost"; |
| 20 $mysql_user = "root"; | 18 $mysql_user = "root"; |
| 21 $mysql_password = "root"; | 19 $mysql_password = "root"; |
| 22 $system_root_url = "http://localhost:1080/localgazetteers-dev/extraction-interface"; | 20 $server_host = "http://localhost:1080/localgazetteers-dev/"; |
| 23 $lgserver_url = "http://localgazetteers-dev/LGServer/"; | 21 $lgserver_url = "http://localgazetteers-dev/LGServer/"; |
| 24 } | 22 } |
| 25 | 23 |
| 24 $systemNAME = "interface"; | |
| 25 $system_root_url = $server_host."extraction-interface"; | |
| 26 | |
| 26 ?> | 27 ?> |
