-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.php
40 lines (34 loc) · 1.12 KB
/
configuration.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
29
30
31
32
33
34
35
36
37
38
39
40
<?php
function startsWith($haystack, $needle)
{
return $needle === "" || strpos($haystack, $needle) === 0;
}
function endsWith($haystack, $needle)
{
return $needle === "" || substr($haystack, -strlen($needle)) === $needle;
}
if (endsWith($_SERVER['HTTP_HOST'], 'japode.prj.viglet.co')) {
$japode_domain = "japode.prj.viglet.co";
$japode_context = "";
$database_hostname = "localhost";
$database_name = "japode";
$database_username = "japode";
$database_password = "japode";
#Facebook
$facebook_appid = "536233886484089";
$facebook_appsecret = "84dbf875058142baac5e9f55251cecc8";
$facebook_redirect = "http://japode.prj.viglet.co/signin/fb/";
} else {
$japode_domain = "www.japode.com";
$japode_context = "";
$database_hostname = "localhost";
$database_name = "japode";
$database_username = "japode";
$database_password = "J951061202";
#Facebook
$facebook_appid = "601877426548698";
$facebook_appsecret = "7797fe8e3223e52793fb349f8691011a";
$facebook_redirect = "http://www.japode.com/signin/fb/";
}
define( 'JPWIDGETABLE', 'jp_ctd_widget' );
?>