-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_inTemplate.php
More file actions
52 lines (44 loc) · 1.25 KB
/
db_inTemplate.php
File metadata and controls
52 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
# these connection strings and locations will need to be
# updated to work in your local environment...
if(!defined('SERVERNAME1'))
define("SERVERNAME1","server1");
# For Fastlane Search
if(!defined('SERVERNAME2'))
define("SERVERNAME2","server2");
# For Award Tracker
if(!defined('SERVERNAME3'))
define("SERVERNAME3","server3");
if(!defined('PORT1'))
define("PORT1","80");
if(!defined('PORT2'))
define("PORT2","80");
if(!defined('PORT3'))
define("PORT3","80");
if(!defined('DBNAME1'))
define("DBNAME1","db1");
if(!defined('DBNAME2'))
define("DBNAME2","db2");
if(!defined('DBNAME3'))
define("DBNAME3","db3");
if(!defined('DBLOGIN1'))
define("DBLOGIN1","login1");
if(!defined('DBLOGIN2'))
define("DBLOGIN2","login2");
if(!defined('DBLOGIN3'))
define("DBLOGIN3","login3");
if(!defined('DBLOGIN4'))
define("DBLOGIN4","anonymous");
if(!defined('DBPASSWORD1'))
define("DBPASSWORD1","pwd1");
if(!defined('DBPASSWORD2'))
define("DBPASSWORD2","pwd2");
if(!defined('DBPASSWORD3'))
define("DBPASSWORD3","pwd3");
if(!defined('DBPASSWORD4'))
define("DBPASSWORD4","anonpwd");
if(!defined("GEOSERVER_URL"))
define("GEOSERVER_URL","http://some.geoserver.org");
if(!defined("GEOSERVER_LAYER"))
define("GEOSERVER_LAYER","Geoserver:layername");
?>