-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
35 lines (34 loc) · 1.11 KB
/
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
<?php
$GBL_CONFIG = array (
'dirs' => array(
'shared' => './_shared',
'site' => './_site',
'ext' => './external',
),
'db' => array(
'server' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'linker',
'connectQueries' => array(
"SET NAMES utf-8",
"set character_set_client='utf8'",
"set character_set_results='utf8'",
"set collation_connection='utf8_general_ci'"
)
),
'site' => array(
'charset' => 'utf-8',
'timezone' => 'Asia/Novosibirsk'
),
'twitter'=>array(
'key' => 'FbjV9Hh3c1MQKZl8jHVOqQ',
'secret' => 'saS5b9GX2SXYEoeYEQrHClb4dH5gUgTzf3nCK8p99E',
'url' => array(
'request' => 'https://api.twitter.com/oauth/request_token',
'authorize' => 'https://api.twitter.com/oauth/authorize',
'access' => 'https://api.twitter.com/oauth/access_token',
'request' => 'https://api.twitter.com/oauth/request_token'
)
)
);