chengkun
2025-05-26 4462855c0033970c39ac8d0da704b7dc41eabbfe
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
53
54
55
56
57
58
59
60
61
62
<?php
error_reporting(0);
 
define('APP_PATH', dirname(__FILE__) . '/');
const CONFIG_PATH = APP_PATH . 'config/';
const DATA_PATH = APP_PATH . 'data/';
const LIB_PATH = APP_PATH . 'app/include/';
const TPL_PATH = APP_PATH . 'app/template/';
const MODEL_PATH = APP_PATH . 'model/';
const PLUS_PATH = DATA_PATH . 'plus/';
const ALL_PS = 'conn';
 
ini_set('session.gc_maxlifetime', 9000);
ini_set('session.gc_probability', 10);
ini_set('session.gc_divisor', 100);
 
include(CONFIG_PATH . 'db.config.php');//$db_config
include_once(PLUS_PATH . 'config.php');
include(CONFIG_PATH . 'db.safety.php');
 
$starttime = time();
define('DEF_DATA', $db_config['def']);
unset ($_ENV, $HTTP_ENV_VARS, $_REQUEST, $HTTP_POST_VARS, $HTTP_GET_VARS);
$_COOKIE = (is_array($_COOKIE)) ? $_COOKIE : $HTTP_COOKIE_VARS;
 
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
header('Content-Type: text/html; charset=UTF-8');
header("Cache-control: private");
header('X-Frame-Options: SAMEORIGIN');
date_default_timezone_set($db_config['timezone']);
if (substr(PHP_VERSION, 0, 1) == '7') {
    
    include_once(LIB_PATH . "mysqli.class.php");
    
} else {
    
    include_once(LIB_PATH . "mysql.class.php");
    
}
 
include_once(LIB_PATH . 'libs/Smarty.class.php');
$phpyun = new Smarty;
$phpyun->debugging = FALSE;
$phpyun->caching = FALSE;
$phpyun->force_cache = FALSE;
$phpyun->template_dir = TPL_PATH;
$phpyun->compile_dir = DATA_PATH . '/templates_c/';
$phpyun->cache_dir = DATA_PATH . '/cache/';
$phpyun->left_delimiter = '{yun:}';
$phpyun->right_delimiter = '{/yun}';
$phpyun->get_install();
 
if (is_file(LIB_PATH . 'webscan360/360safe/360webscan.php')) {
    require_once(LIB_PATH . 'webscan360/360safe/360webscan.php');
}
 
$db = new mysql($db_config['dbhost'], $db_config['dbuser'], $db_config['dbpass'], $db_config['dbname'], ALL_PS, $db_config['charset'], $db_config['def']);
 
include_once(LIB_PATH . 'public.function.php');
include_once(LIB_PATH . 'public.domain.php');
include(LIB_PATH . 'public.url.php');
include(PLUS_PATH . 'seo.cache.php');