-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
28 lines (26 loc) · 978 Bytes
/
config.php
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
<?php
define('_LOCAL',true);
if(_LOCAL){
define('_MYSQL_DB_NAME','boulder');
define('_MYSQL_HOST','localhost');
define('_MYSQL_USERNAME','climber');
define('_MYSQL_PASSWORD','climber');
define('_FACEBOOK_APPID','369309729831528');
define('_FACEBOOK_CHANNEL_URL','http://localhost/boulderrep/index.php');
}
else{
define('_MYSQL_DB_NAME','DB1196928');
define('_MYSQL_HOST','rdbms.strato.de');
define('_MYSQL_USERNAME','U1196928');
define('_MYSQL_PASSWORD','atwqnmgc79');
define('_FACEBOOK_APPID','457919904268179');
define('_FACEBOOK_CHANNEL_URL','http://rocknclimb.de/index.php');
}
include_once('includes/db.class.php');
include_once('includes/classes/wall.class.php');
include_once('includes/classes/boulder.class.php');
include_once('includes/classes/node.class.php');
include_once('includes/classes/user.class.php');
include_once('includes/classes/comment.class.php');
include_once('includes/classes/highscore.class.php');
?>