-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
48 lines (40 loc) · 933 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
session_start();
// Find out the root directory for site
$_CFG['root'] = dirname(realpath(__FILE__)) . '/' ;
$_CFG['domain'] = 'example.com';
$_CFG['socialAuth'] = array(
'google' => array(
'clientSecret' => '',
'clientId' => '',
),
'ok' => array(
'appid' => '',
'publicKey' => '',
'secretKey' => '',
),
'vk' => array(
'clientSecret' => '',
'clientId' => '',
),
'twitter' => array(
'consumerKey' => '',
'consumerSecret' => '',
'accessToken' => '',
'accessTokenSecret' => '',
),
'facebook' => array(
'appId' => '',
'appSecret' => '',
),
);
function redirect($url, $timeout = 0, $params = []){
print "
<script type='text/javascript'>
setTimeout(function(){
document.location.href = '" . $url . "';
}, " . ($timeout * 1000) . ");
</script>";
exit();
}
?>